C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} None of These Garbage Value 10 1 None of These Garbage Value 10 1 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 14 12 13 22 12 12 13 22 13 14 14 22 11 11 11 12 10 11 13 22 14 12 13 22 12 12 13 22 13 14 14 22 11 11 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 50 8 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 0 Garbage Value 3 1 2 0 Garbage Value 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 5 4 6 Error 5 4 6 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 None of these 215 216 – 1 215 – 1 216 None of these 215 216 – 1 215 – 1 ANSWER DOWNLOAD EXAMIANS APP