C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 – 1 216 None of these 215 – 1 215 216 – 1 216 None of these 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr no such function in 'C'. stdin Data file string stderr no such function in 'C'. stdin Data file string ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 10 5 11 6 9 10 5 11 6 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are correct about an array?1. The array int num[26]; can store 26 elements.2. The expression num[1] designates the very first element in the array.3. It is necessary to initialize the array at the time of declaration.4. The declaration num[SIZE] is allowed if SIZE is a macro. 2, 4 1 2, 3 None of these 1, 4 2, 4 1 2, 3 None of these 1, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int i=10; printf("i=%d", i); { int i=20; printf("i=%d", i); i++; printf("i=%d", i); } printf("i=%d", i);} 10 10 11 11 10 20 21 10 10 20 21 21 10 20 21 20 10 10 11 11 10 20 21 10 10 20 21 21 10 20 21 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 8 20 Theoratically no limit. The only practical limits are memory size and compilers. 50 2 8 20 Theoratically no limit. The only practical limits are memory size and compilers. 50 ANSWER DOWNLOAD EXAMIANS APP