C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning Good Morning M Good None of these Morning Good Morning M Good None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char real int double float char real int double float ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 10, 24, 50 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 50, 13, 24, 13 13, 10, 24, 50 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 50, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to infinite Complier error -10 to -1 -10 to 0 -10 to infinite Complier error -10 to -1 -10 to 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 1 -1 1 complier error -1 1 -1 -1 1 1 -1 1 complier error -1 1 -1 -1 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 4 3 10 5 3 3 10 5 5 5 10 5 4 4 10 5 3 4 10 5 4 3 10 5 3 3 10 5 5 5 10 5 4 4 10 5 3 4 ANSWER DOWNLOAD EXAMIANS APP