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 / sawwas
11
| Is This Answer Correct ? | 52 Yes | 9 No |
Post New Answer View All Answers
What is a constructor in c++ with example?
What is the best c++ book for beginners?
What is data abstraction? How is it different from data encapsulation?
What's the order in which the local objects are destructed?
What is algorithm in c++ programming?
what is data encapsulation in C++?
What is encapsulation in c++ with example?
Explain the extern storage classes in c++.
Is c++ the hardest programming language?
Define stacks. Provide an example where they are useful.
Can a list of string be stored within a two dimensional array?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
the maximum length of a character constant can be a) 2 b) 1 c) 8
How do I download c++?
Is it possible for a member function to use delete this?