write a c program that prints all multiples of 3between 1
and 50.
Answer Posted / 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 |
Post New Answer View All Answers
What are the types of data files?
What is the code in while loop that returns the output of given code?
How many types of arrays are there in c?
What are pointers really good for, anyway?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is bin sh c?
What are enumerated types?
What are conditional operators in C?
What is the purpose of main( ) in c language?
write a c program to find the sum of five entered numbers using an array named number
Why is c not oop?
Explain how can I remove the trailing spaces from a string?
Why is sprintf unsafe?
Can we assign integer value to char in c?