C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 II and III III and IV I, III and IV I and II I, II and III II and III III and IV I, III and IV I and II I, II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m);} 2, 1, 15 2, 3, 20 3, 2, 15 1, 2, 5 2, 1, 15 2, 3, 20 3, 2, 15 1, 2, 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value result call by value call by reference None of these. call by value result call by value call by reference ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 64 16 4 None of These 64 16 4 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope Local scope Function scope File scope No scope at all Block scope Local scope Function scope File scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is a complete function? None of these void funct(int) { printf(“Hello"); } int funct(); int funct(int x) { return x=x+1; } void funct(x) { printf(“Hello"); } None of these void funct(int) { printf(“Hello"); } int funct(); int funct(int x) { return x=x+1; } void funct(x) { printf(“Hello"); } ANSWER DOWNLOAD EXAMIANS APP