C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Morning M Good Morning Good None of these Morning M Good Morning Good 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=1 x=4 x=5 Error x=0 x=1 x=4 x=5 Error x=0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 3 4 10 5 4 4 10 5 3 3 10 5 5 5 10 5 4 3 10 5 3 4 10 5 4 4 10 5 3 3 10 5 5 5 10 5 4 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? % && || ++ + % && || ++ + ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} Error 10..10 10..50 0 Error 10..10 10..50 0 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);} 11 14 12 13 Compilation error 11 14 12 13 Compilation error ANSWER DOWNLOAD EXAMIANS APP