A
Q. How many times do we get through the following loop?
for ( counter = 2; counter < 9; counter += 2 )
From 2 to 9 with Step = 2. So we get through the loop 4 times. (2 -> 4 -> 6 -> 8).
You must be Logged in to update hint/solution
Q. What is the output of the program?
Q. Variables of type auto, static and extern are all stored in?
Q. What is short int in C programming?
Q. What is the output of C Program with switch statement or block.?
Q. How do you accept a Multi Word Input in C Language?
Q. What is the output of this program?
Q. Choose a correct statement about C Language Functions.
Q. Which of the following is not a valid variable name declaration?
Q. Which command is to compile C code without linking using gcc compiler?
Discusssion
Login to discuss.