C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 0 None of these 1 10 6 0 None of these 1 10 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]);} Garbage Value 0 6 None of these 5 Garbage Value 0 6 None of these 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 5 10 6 11 9 5 10 6 11 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} Runtime error g##g2 10012 Syntax error 100 Runtime error g##g2 10012 Syntax error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 1 10 14 0 None of these 1 10 14 0 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope No scope at all File scope Local scope Function scope Block scope No scope at all File scope Local scope ANSWER DOWNLOAD EXAMIANS APP