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 12 Compilation error 14 11 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; float ptr; *float ptr; None of these float *ptr; float ptr; *float ptr; None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 1 Error 100 1 Error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns 0 true 1 -1 None of these 0 true 1 -1 None of these ANSWER DOWNLOAD EXAMIANS APP
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);} Compilation error 14 12 13 11 Compilation error 14 12 13 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Members of a structure Arithmetic expressions Local variables Both of the above R-values Members of a structure Arithmetic expressions Local variables Both of the above ANSWER DOWNLOAD EXAMIANS APP