What will be the output of the following: void main() { int i; for(i=1;i<=4;i++) { printf("%d",i); continue; } }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following: void main() { int i; for(i=1;i<=4;i++) { printf("%d",i); continue; } }