C Programming The address operator &, cannot act on Local variables Members of a structure R-values Arithmetic expressions Both of the above Local variables Members of a structure R-values Arithmetic expressions Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} Garbage value 0 0 Garbage Value 0 0 Garbage vlaue Garbage Value Code will not compile Garbage value 0 0 Garbage Value 0 0 Garbage vlaue Garbage Value Code will not compile ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 Compilation Error 1 -1 33 0 Compilation Error 1 -1 33 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Need not contain any function. None of these Must contain at least one function. Needs input data. Need not contain any function. None of these Must contain at least one function. Needs input data. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? Theoratically no limit. The only practical limits are memory size and compilers. 20 50 2 8 Theoratically no limit. The only practical limits are memory size and compilers. 20 50 2 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int char real double float int char real double float ANSWER DOWNLOAD EXAMIANS APP