C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} -2 2 Error 1 -2 2 Error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } None of these asiha absiha hai haasi None of these asiha absiha hai haasi ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? case register main auto default case register main auto default ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=5 x=0 x=4 Error x=1 x=5 x=0 x=4 Error x=1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Both of the above R-values Local variables Members of a structure Arithmetic expressions Both of the above R-values Local variables Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -3.4e38 to 3.4e38 -32668 to 32667 -32768 to 32767 -32767 to 32768 -3.4e38 to 3.4e38 -32668 to 32667 -32768 to 32767 -32767 to 32768 ANSWER DOWNLOAD EXAMIANS APP