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
Give differences between - new and malloc() , delete and free() ?
Explain the difference between #include "..." And #include <...> In c?
I need previous papers of CSC.......plz help out by posting them.......
How do you write a program which produces its own source code as output?
What is the difference between array and linked list in c?
When should I declare a function?
What are called c variables?
write a c program for swapping two strings using pointer
Explain how can I manipulate strings of multibyte characters?
Why do we use main function?
What is the heap?
What is define c?
What is the sizeof () operator?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Is c pass by value or reference?