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 / sonam
11
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
What are containers in c++?
What do you mean by early binding?
Write a program to find the Fibonacci series recursively.
why is iostream::eof inside a loop condition considered wrong?
Which compiler does turbo c++ use?
Which sort does c++ use?
Is c++ primer good for beginners?
Is c++ a float?
What is a c++ class?
What is a class template in c++?
an integer constant must have atleast one a) character b) digit c) decimal point
What are pointer-to-members? Explain.
Is c++ a low level language?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
How can you link a c++ program to c functions?