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

13
14
Compilation error
11
12

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP