Summary:-
What will be the output of the following C code?#include <stdio.h>main( ){int i;for (i=0; i<5; i++){int i = 10;printf("%d", i);i++;}return 0;} 10 11 12 13 14, 10 10 10 10 10, 0 1 2 3 4, Compilation error
The output of #include <stdio.h>main( ){int i;for (i=0; i<5; i++){int i = 10;printf("%d", i);i++;}return 0;} is 10 10 10 10 10
Related Questions:-
Comments
write a comment