C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 0 1 1 1 0 0 1 0 None of these 0 1 1 1 0 0 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 12 12 13 22 13 14 14 12 10 11 13 22 14 12 13 22 11 11 11 22 12 12 13 22 13 14 14 12 10 11 13 22 14 12 13 22 11 11 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char double real float int char double real float int ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The number of successful read input values. 1 The actual values read for each argument. ASCII value of the input read. 0 The number of successful read input values. 1 The actual values read for each argument. ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 Garbage Value 000 333 433 444 Garbage Value 000 333 433 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=4 x=0 x=1 Error x=5 x=4 x=0 x=1 Error x=5 ANSWER DOWNLOAD EXAMIANS APP