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

Answers were Sorted based on User's Feedback



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

Answer / yamuna

/*A.Yamuna III BSc CS L.R.G. COLLEGE,TIRUPUR*/
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
printf("The multiples of 3 between 1 and 50 are :");
for(a=1;a<=50;a++)
{
if(a%3==0)
{
printf("\n%d",a);
}
}
getch();
}

Is This Answer Correct ?    47 Yes 6 No

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

Answer / dj

#include<stdio.h>
#include<conio.h>
Void main()
{
int i;
for(i=1;i<=50;i++)
{
if(i%3==0)
{
printf("%d",i);
}
}
grtch();
}

Is This Answer Correct ?    24 Yes 13 No

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

Answer / narsi

#include<stdio.h>
#include<conio.h>
void main()
{
int n1,n2;
n1=1;
n2=50;
while(n1<=n2)
{
if(n1%3==0)
printf("%d ",n1);
n1=n1+1;
}
}

Is This Answer Correct ?    12 Yes 4 No

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

Answer / 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

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

Answer / hemanth

#include<stdio.h>
#include<conio.h>
void main()
{
int n1,n2;
n1=1;
n2=50;
while(n1<=n2)
{
if(n1%3==0)
printf("%d ",n1);
n1=n1+1;
}
}

Is This Answer Correct ?    5 Yes 6 No

Post New Answer

More C Interview Questions

write an algorithm and a program to count the number of elements in a circularly singly linked list

1 Answers   Ignou,


What do you mean by scope of a variable in c?

0 Answers  


Why is c used in embedded systems?

0 Answers  


Taking an example,differentiate b/w loader and linker ?

1 Answers  


What is volatile c?

0 Answers  


i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).

1 Answers  


Do you know what are the properties of union in c?

0 Answers  


what is difference between ANSI structure and C99 Structure?

1 Answers   Wipro,


Does c have class?

0 Answers  


which of 'arrays' or 'pointers' are faster?

5 Answers  


How do I get a null pointer in my programs?

0 Answers  


Why are all header files not declared in every c program?

0 Answers  


Categories