What is the output of the following 3D Array
int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12};
what is the output for arr[2][1][0]?
Answer Posted / sawwas
11
| Is This Answer Correct ? | 52 Yes | 9 No |
Post New Answer View All Answers
What apps are written in c++?
How would you use the functions randomize() and random()?
What are the differences between java and c++?
What is ios in c++?
What are references in c++? What is a local reference?
Out of fgets() and gets() which function is safe to use and why?
List the features of oops in c++?
What is the use of setprecision in c++?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
What information can an exception contain?
Using a smart pointer can we iterate through a container?
What is the difference between cin.read() and cin.getline()?
What is a linked list in c++?
What things would you remember while making an interface?