write a c program that prints all multiples of 3between 1
and 50.

Answer Posted / pruthiewraj swain

#include<stdio.h>
#include <conio.h>
voidmain()
{
int a ;
printf("enter the multiples of 3");
while (a=100)
{
if (a%3==0|| a%4==0)
}
printf("
%d",a);
}}
getch();
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is wild pointer in c?

601


What is non linear data structure in c?

567


Explain what is the difference between a string and an array?

628


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

809


I need a sort of an approximate strcmp routine?

655






Do pointers need to be initialized?

556


Do variables need to be initialized?

616


How can you increase the size of a statically allocated array?

608


Why do we use int main?

602


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

617


What are the types of data files?

723


What is the difference between union and anonymous union?

832


Explain Basic concepts of C language?

640


What is a floating point in c?

598


Where are some collections of useful code fragments and examples?

712