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. HUGE_VAL macro is used when the output of the function may not be ___________
Q. Which of these is a user-defined data type in C?
Q. What is the output of C Program.?
Q. What do you call STAR * and Ampersand & in a c program context.?
Q. What will be the output of the following C code?
Q. Which languages necessarily need heap allocation in the run time environment?
Q. A character constant is enclosed by
Q. What is the size of int type?
Q. What is the output of C Program with switch statement or block?
Discusssion
Login to discuss.