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 does c mean in standard form?
What is s in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How do you define structure?
What is the process of writing the null pointer?
can we change the default calling convention in c if yes than how.........?
What does node * mean?
Where is volatile variable stored?
Define C in your own Language.
Is that possible to add pointers to each other?
What is console in c language?
Write the Program to reverse a string using pointers.
Explain what math functions are available for integers? For floating point?
What is a double c?
What is a program flowchart and how does it help in writing a program?