write a c program that prints all multiples of 3between 1
and 50.
Answer Posted / pruthiewraj swain
#include<stdio.h>
#include <conio.h>
voidmain()
{
int a ;
printf("enter the multiples of 3");
while (a=100)
{
if (a%3==0|| a%4==0)
}
printf("
%d",a);
}}
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is c a great language, or what?
How can I recover the file name given an open stream?
What is difference between array and structure in c?
What is the translation phases used in c language?
Write a code to generate a series where the next element is the sum of last k terms.
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
How do you define a function?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What are c header files?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Why c is called a middle level language?
What is indirection in c?
What is ## preprocessor operator in c?
Why we not create function inside function.
When should you use a type cast?