C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 3 1 2 Garbage Value 0 3 1 2 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output 0 complier error 1 no error no output 0 complier error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is syntactically and semantically correct None of these. is illegal is legal but meaningless is syntactically and semantically correct None of these. is illegal is legal but meaningless ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 0 7 Compiler Error 6 5 0 7 Compiler Error 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr stdin string no such function in 'C'. Data file stderr stdin string no such function in 'C'. Data file ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} 300 None of These %d\n Error 300 None of These %d\n Error ANSWER DOWNLOAD EXAMIANS APP