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 / darshil movaliya
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]?
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How do you find out if a linked-list has an end?
How one would use switch in a program?
Can you pass a vector to a function?
How many static variables are created if you put one static member into a template class definition?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
How are Structure passing and returning implemented by the compiler?
Write about an iterator class?
What is the use of class in c++?
What is flush c++?
Write about the stack unwinding?
What is public, protected, private in c++?
Does c++ support multilevel and multiple inheritances?
What is heap sort in c++?
Define pointers?
What is a stack? How it can be implemented?