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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of statements that perform some specific task.
All of these
Function is a block of code that performs a specific task. It has a name and it is reusable.
Function is the fundamental modular unit. A function is usually designed to perform a specific task.

ANSWER DOWNLOAD EXAMIANS APP