Describe and illustrate the characteristics of an object? What is the syntax for a multi dimensional array and a two dimensional array ?
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];
}
Comments
Leave a comment