answersLogoWhite

0

Give an example of a multi dimensional array in Cpp?

Updated: 8/19/2019
User Avatar

Wiki User

11y ago

Best Answer

// 2 dimensional array (a sudoku puzzle):

char sudoku[9][9];

// 3 dimensional array (100 sudoku puzzles):

char sudokus[100][9][9]

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Give an example of a multi dimensional array in Cpp?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Give the syntax to declare two dimensional array using array of pointers?

It is not possible to declare a two-dimensional array using an array of pointers in any programming language, but many programming languages support declarations of N-dimensional arrays of pointers.The exact syntax varies with the programming language, and requires support for N-dimensional arrays and pointers. In C, the following declares an array of pointer variables, each implemented as pointer to the generic type "void":void* array_1D[10];The type of the expression array_1D is "void * const."The following example expands on the previous one by declaring a two-dimensional array of "void" pointers:void* array_2D[10][20];The type of the expression array_2D is "void ** const."The last example declares a 3-dimensional array of "void" pointers, which can be seen as a 2-dimensional array of arrays of pointers:void* array_3D[10][20][30];


Can you give an example of array using character variable in c program?

the example of array over charcter variables is char ["string"]


What is Difference between one dimensional array and two dimensional?

A matrix (two dimensional array) is a group of lists, or arrays that are organized into one data set. To understand them, first look an example of the standard one dimensional array:Array "A":1689905You can reference any point in the "array" by naming the array and following it with a number representing the position of a piece of data on the list. The first data on the array is represented with a "0", the second with a "1", and so on. For example, A[2] (in bold) represents 99 because it is the third figure of array A. You could imagine the references of the above table as the following:Array "A":[0][1][2][3][4]A matrix is a set of arrays. Visualize the following table:Matrix "B":16 17 98 88 7499 12 210 6 405 19 18There are 3 different arrays in a single data set, "B". In Array A, you could reference any data by naming the point on the list, such as "1" or "3". However, with a matrix, you must give both a row and a column. You can reference data on a matrix in the following format:MatrixName[row][column]For example, B[3][2] would represent 40 because it is the it is on the fourth row down and the third column. Remember, matrix references also start at zero, not one! You can reference any of the data on this table with this chart:Matrix "B":[0][0] [0][1] [0][2][1][0] [1][1] [1][2][2][0] [2][1] [2][2][3][0] [3][1] [3][2][4][0] [4][1] [4][2]Two-dimensional arrays are used everywhere, but are especially prevalent in computer programming and accounting. If you know any programmers, ask them the last time the last time they used a matrix- I'm sure they'll give you plenty of examples!


Can you give Practical example for multilevel Inheritance?

Grandfather-father-child relationship is an example for multi level inheritance..


Can you give an example of a simple sentence using the word intrigued?

They were all intrigued at the huge array of various foods from different countries that were available at the luncheon.


Can you give an example on how you pass array elements to a function?

int main void (int argc, char *argv[]){int i;for (i=0; i


Give an example where passing an argument by reference would be useful?

If you need to pass an array with the large number of elements the best way to do it is using passing by reference because you don't create a copy of the array. Thus, you save free RAM space.


How you pass array elements to a function Give an example?

You can pass array elements just as you would pass a named variable. void f(int& x) {/*...*/} int main() { int a[] {4,8,15,16,23,42}; f (a[3]); // pass the 4th element to f... }


Where can one find a multi car insurance policy?

Nearly every major auto insurance company can give you a multi car insurance policy. All State, State Farm Insurance, for example. Geico has been advertising a lot for multi car discounts.


Can you give me a sentence with the word three-dimensional?

the shape was in three-dimensional or 3-D


If structure is arraythen an individual array element can be accessed by writing a variable?

A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.


Arrays in c?

1>an array is a static data structure.after declaring an array it is impossible to change its size.thus sometime memory spaces are misused. 2>each element of array are of same data type as well as same size.we can not work with elements of different data type. 3>in an array the task of insertion and deletion is not easy because the elements are stored in contiguous memory location. 4>array is a static data structure thus the number of elements can be stored in it are somehow fixed.