Discussion :: Control Structures
-
What is the output of the following statements?
for(i=10; i++; i<15)
printf("%d ", i);
Answer : Option D
Explanation :
Since the condition is always true it will go to infinite loop.
Be The First To Comment