C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 1 0 Garbage Value 3 2 1 0 Garbage Value 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} None of these. 10 Error 0.000000 None of these. 10 Error 0.000000 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 – 1 215 – 1 215 216 None of these 216 – 1 215 – 1 215 216 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=EDA y=VEDA y=EXAMIANS y=MVEDA y=AMVEDA y=EDA y=VEDA y=EXAMIANS y=MVEDA y=AMVEDA ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr[6] arr[7] arr{6} arr{7} None of these arr[6] arr[7] arr{6} arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + ++ && || % + ++ && || % ANSWER DOWNLOAD EXAMIANS APP