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 / arpita
ans-0 [3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}
[2][1][0]={0}
3*2*2=12
2*1*0=0
think hatke...
| Is This Answer Correct ? | 9 Yes | 29 No |
Post New Answer View All Answers
What is the c++ programming language used for?
Write about the retrieval of n number of objects during the process of delete[]p?
What is else if syntax?
You run a shell on unix system. How would you tell which shell are you running?
Why is c++ still popular?
What are the various access specifiers in c++?
Explain abstraction.
Explain selection sorting. Also write an example.
What is the use of ::(scope resolution operator)?
How long it will take to learn c++?
Write my own zero-argument manipulator that should work same as hex?
What does std mean in c++?
what are the events occur in intr activated on interrupt vector table
What is static function? Explain with an example
What is the disadvantage of using a macro?