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); }}

4 5 6 7 8 9
None of these
4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9
1 2 3 10

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );}

Prints the value of 0 one time only.
The loop will run infinitely many times.
There will be a compilation error reported.
A run time error will be generated.
The program will not enter into the loop.

ANSWER DOWNLOAD EXAMIANS APP