What would be the output of the following?
main() { int i,j; for(i=0;;i++) for(j=0;;j++) if(j>100) break; printf("%d%d",i,j); }
Reveal answer
Fill a bubble to check yourself
What would be the output of the following?
main() { int i,j; for(i=0;;i++) for(j=0;;j++) if(j>100) break; printf("%d%d",i,j); }