C Programming
What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }}
50, 13, 24, 50
50, 13, 11, 13
50, 13, 24, 13
13, 13, 24, 13
13, 10, 24, 50
ANSWER
DOWNLOAD EXAMIANS APP
↑