C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 110 450 10 -10 -110 110 450 10 -10 -110 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Compiler Error 5 Garbage Value 6 Compiler Error 5 Garbage Value 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... Data file stderr no such function in 'C'. string stdin Data file stderr no such function in 'C'. string stdin ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning None of these Good Morning M Good Morning None of these Good Morning M 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)); } Runtime error 4 4 5 6 7 Syntax error 1 2 3 4 Runtime error 4 4 5 6 7 Syntax error 1 2 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 0 1 2 3 None of these 1 1 2 3 0 1 2 2 1 1 2 2 0 1 2 3 None of these 1 1 2 3 0 1 2 2 1 1 2 2 ANSWER DOWNLOAD EXAMIANS APP