Answer to Question #313489 in C++ for Simon

Question #313489

Describe and illustrate the characteristics of an object? What is the syntax for a multi dimensional array and a two dimensional array ?

1
Expert's answer
2022-03-17T15:18:13-0400
int main()
{
	const int ROW = 5; // two dimensional array
	const int COL = 5;
	int arr[ROW][COL];




	const int x=5, y=5, z=5; // dimensional array
	int arr[x][y][z];
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog