C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 None of these 1 0 0 0 0 1 1 1 None of these 1 0 0 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? 12 10 11 13 22 11 11 11 22 13 14 14 22 14 12 13 22 12 12 13 12 10 11 13 22 11 11 11 22 13 14 14 22 14 12 13 22 12 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... Data file string no such function in 'C'. stderr stdin Data file string no such function in 'C'. stderr stdin ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 7 9 8 6 5 7 9 8 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? pow(x, 2) power(x, 2) sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) sqr(x) pow(2, x) power(2, x) ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Takes care of macros Acts before compilation Takes care of conditional compilation Takes care of include files All of these Takes care of macros Acts before compilation Takes care of conditional compilation Takes care of include files ANSWER DOWNLOAD EXAMIANS APP