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);} 12 Compilation error 13 11 14 12 Compilation error 13 11 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() None of these scanf() gets() printf() puts() None of these scanf() gets() printf() 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=0 x=1 x=4 x=5 Error x=0 x=1 x=4 x=5 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Takes care of conditional compilation Acts before compilation Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation Takes care of macros Takes care of include files ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32767 to 32768 -32668 to 32667 -32768 to 32767 -3.4e38 to 3.4e38 -32767 to 32768 -32668 to 32667 -32768 to 32767 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} 20 30 24 25 None of these 20 30 24 25 None of these ANSWER DOWNLOAD EXAMIANS APP