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

12
Compilation error
14
11
13

ANSWER DOWNLOAD EXAMIANS APP