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
Differentiate between a copy constructor and an overloaded assignment operator.
Is c++ an oop?
What is the benefit of c++?
What is math h in c++?
Is java as fast as c++?
Why was c++ created?
Explain how the virtual base class is different from the conventional base classes of the opps.
What is the difference between a pointer and a link in c ++?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What do nonglobal variables default to a) auto b) register c) static
What is an orthogonal base class in c++?
What are the advantages of c++ over c?
What is the best book for c++ beginners?
Which is the best c++ compiler for beginners?
Is c++ harder than java?