C Programming
What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i);

10 11 12 13 14 15
9 10 11 12 13
10 11 12 13 14
Infinite loop
None of these

ANSWER DOWNLOAD EXAMIANS APP