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);} 14 13 11 12 Compilation error 14 13 11 12 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 None of these. 10 11 9 None of these. 10 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 0 1 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 1 2 3 4 Syntax error 4 5 6 7 4 Runtime error 1 2 3 4 Syntax error 4 5 6 7 4 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} Runtime error 10012 Syntax error 100 g##g2 Runtime error 10012 Syntax error 100 g##g2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Both of the above R-values Members of a structure Local variables Arithmetic expressions Both of the above R-values Members of a structure Local variables ANSWER DOWNLOAD EXAMIANS APP