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

Compilation error
14
13
11
12

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on a new line
has # as the first character
need not start on the first column
comes before the first executable statement

ANSWER DOWNLOAD EXAMIANS APP