Question:What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
  int array[2][2][3]={0,1,2,3,4,5,6,7,8,9,10,11};
  printf("%d",array[1][0][2]);
  return 0;

A 4 

B 5 

C 6 

D 7 

E 8 

+ Answer
+ Report
Total Preview: 1110

Copyright © 2024. Powered by Intellect Software Ltd