Home / Programming MCQs / C Programming MCQs / Question
M
Q. How many times do we get through the following loop?
int c = 10; while (( c <11 ) { printf("Hello World\n"); }
while (( c <11 ) {...} We tell the computer “As long as the condition is true (10 < 11), repeat the instructions between braces”.
You must be Logged in to update hint/solution
Which of the following will be the type of ‘res’?
What will be the output of the following code snippet?
What is the output of C program with structure arrays?
Array is an example of _______ type memory allocation.
What is the output of the following C program?
What is the initial value of extern storage class specifier?
Discusssion
Login to discuss.