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
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the difference between malloc calloc and realloc in c?
What is a union?
a program that can input number of records and can view it again the record
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain about block scope in c?
Write a program to generate random numbers in c?
Explain Function Pointer?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How macro execution is faster than function ?
What is the difference between fread and fwrite function?
Can we declare variable anywhere in c?
What is omp_num_threads?
Are pointers really faster than arrays?
Tell me when would you use a pointer to a function?