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
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the difference between struct and union in C?
What is property type c?
How do I convert a string to all upper or lower case?
What is the meaning of ?
Why clrscr is used in c?
How would you rename a function in C?
What are the 4 data types?
Write a program to print numbers from 1 to 100 without using loop in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
shorting algorithmS
How can I remove the trailing spaces from a string?
How is = symbol different from == symbol in c programming?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What does void main return?