Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
How do you generate random numbers in C?
What is an array? What the different types of arrays in c?
what is the self-referential structure?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
what is ANSI and ISO
C language questions for civil engineering
largest Of three Number using without if condition?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What is restrict keyword in c?