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
can any one provide me the notes of data structure for ignou cs-62 paper
How #define works?
Explain what is a stream?
What are multibyte characters?
Explain how do you print an address?
What is static memory allocation? Explain
Why we use break in c?
The statement, int(*x[]) () what does in indicate?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is atoi and atof in c?
If the size of int data type is two bytes, what is the range of signed int data type?
What are the general description for loop statement and available loop types in c?
What is a function simple definition?
What is the use of #include in c?
Are local variables initialized to zero by default in c?