Which of the following statement is correct for switch controlling expression? (A) Only int can be used in “switch” control expression. (B) Both int and… Read More
Tag Archives: C Quiz – 104
What’s going to happen when we compile and run the following C program? #include "stdio.h" int main() { int j = 0; for ( ;… Read More
What’s going to happen when we compile and run the following C program? #include "stdio.h" int main() { int i = 1, j; for… Read More
With respect to following “for” loops in C, pick the best statement. Assume that there is a prior declaration of ‘i’ in all cases for… Read More
With respect to following “for” loops in C, pick the best statement Assume that there is a prior declaration of ‘i’ in all cases for… Read More