C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 2 Garbage Value 1 0 3 2 Garbage Value 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to 0 -10 to infinite -10 to -1 Complier error -10 to 0 -10 to infinite -10 to -1 Complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string Data file stdin stderr no such function in 'C'. string Data file stdin stderr no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && % + || ++ && % + || ++ ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; None of these *float ptr; float ptr; float *ptr; None of these *float ptr; float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65488 65486, 65486 65486, 65490 65486, 65487 None of these 65486, 65488 65486, 65486 65486, 65490 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP