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
Compilation error
13
11
14

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

All of these
Takes care of conditional compilation
Acts before compilation
Takes care of macros
Takes care of include files

ANSWER DOWNLOAD EXAMIANS APP