C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 3 Garbage Value 2 1 0 3 Garbage Value 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[6] arr{7} arr{6} None of these arr[7] arr[6] arr{7} arr{6} None of these arr[7] ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line comes before the first executable statement need not start on the first column has # as the first character need not start on a new line comes before the first executable statement need not start on the first column has # as the first character ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns 0 -1 None of these true 1 0 -1 None of these true 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 12 10 15 11 None of these 12 10 15 11 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 1 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 1 ANSWER DOWNLOAD EXAMIANS APP