C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 0 0 Code will not compile Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 0 0 Code will not compile ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int real double char float int real double char float ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} make an infinite loop Some address will be printed None of These Error make an infinite loop Some address will be printed None of These Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The operator > and < are meaningful when used with pointers, if None of these. The pointers point to data of similar type. The pointers point to structure of similar data type. The pointers point to elements of the same array. None of these. The pointers point to data of similar type. The pointers point to structure of similar data type. The pointers point to elements of the same array. ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 0 1 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 12 1 11 Error 12 1 11 ANSWER DOWNLOAD EXAMIANS APP