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 / darshil movaliya

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]?

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are strings mutable in c++?

688


what is Loop function? What are different types of Loops?

634


How to implement is-a and has-a class relationships?

578


What is the difference between structures and unions?

580


What is encapsulation in c++ with example?

579






write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4841


Define a pointer to a data member of the type pointer to pointer?

568


Is it possible to write a c++ template to check for a function's existence?

568


Can I make ios apps with c++?

553


Differentiate between an inspector and a mutator ?

701


What is an incomplete type in c++?

760


What is a tree in c++?

557


Why is c++ called oops?

550


Why c++ is not a pure oop language?

551


What is singleton pattern in c++?

542