What is the output of the following code? #include<stdio.h>void main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("\n%d\t",s); }}
Reveal answer
Fill a bubble to check yourself
What is the output of the following code? #include<stdio.h>void main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("\n%d\t",s); }}