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
Explain how do you sort filenames in a directory?
Explain #pragma statements.
What is the auto keyword good for?
What is meant by high-order and low-order bytes?
What is the difference between the = symbol and == symbol?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Why isn't it being handled properly?
Why clrscr is used after variable declaration?
What is wild pointer in c with example?
What are the 4 types of functions?
What is a c token and types of c tokens?
What are high level languages like C and FORTRAN also known as?
How do you redirect a standard stream?
Why is c called a mid-level programming language?
Explain the difference between #include "..." And #include <...> In c?