Discussion :: Control Structures
-
What will be the output of the following piece of code?
for(i = 0; i<10; i++);
printf("%d", i);
Answer : Option A
Explanation :
Due to semicolon(;) at the end of the for loop, after 10 iterations for loop will be terminated and the result will be 10.
Be The First To Comment