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 / zohaib brohi
the output will be 11..
first we should make it simple.
just make all the values in that array of 2x2 in 3 block like
1,2,
3,4,
5,6,
7,8,
9,10,
11,12
now we have to find [2][1][0]. it means that the value is in
3rd block becoz array starts from 0, then [1][0] means 1st
value of 2nd row.. so thats 11.
| Is This Answer Correct ? | 112 Yes | 9 No |
Post New Answer View All Answers
Explain how functions are classified in C++ ?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is command line arguments in C++? What are its uses? Where we have to use this?
Is c++ slower than c?
What is set in c++?
What are the differences between malloc() and calloc()?
What is constant in c++ with example?
What do you mean by delegate? Can a user retain delegates?
What is the rule of three?
How does a copy constructor differs from an overloaded assignment operator?
What are the methods of exporting a function from a dll?
Which of the following is evaluated first: a) && b) || c) !
What is using namespace std in cpp?
What are punctuators in c++?
What does new do in c++?