C Programming
Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);}

12
11
Compilation error
14
13

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Helps to avoid repeated programming across programs.
Makes the debugging task easier.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP