C Programming Size of the array need not be specified, when Initialization is a part of definition It is a declaratrion It is a formal parameter All of these Initialization is a part of definition It is a declaratrion It is a formal parameter All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} -1 1 -1 1 1 1 -1 -1 complier error -1 1 -1 1 1 1 -1 -1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 6 0 Garbage Value 5 None of these 6 0 Garbage Value 5 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Local variables Members of a structure R-values Both of the above Arithmetic expressions Local variables Members of a structure R-values Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians None of these examians complier error well done examians None of these examians complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);} c=3 d=5 c=5 d=3 c=3 d=3 c=5 d=5 c=3 d=5 c=5 d=3 c=3 d=3 c=5 d=5 ANSWER DOWNLOAD EXAMIANS APP