বহুমাত্রিক অ্যারেতে, অ্যারের মাত্রা 1 এর চেয়ে বেশি হওয়া উচিত। নিম্নলিখিত চিত্রটি 3 x 3 x 3 মাত্রা সহ একটি বহুমাত্রিক অ্যারের জন্য মেমরি বরাদ্দকরণ কৌশল দেখায়।
এটি একটি বহুমাত্রিক অ্যারে শুরু করার জন্য একটি C++ প্রোগ্রাম৷
অ্যালগরিদম
Begin Initialize the elements of a multidimensional array. Print the size of the array. Display the content of the array. End
উদাহরণ
#include<iostream> using namespace std; int main() { int r, c; int a[][2] = {{3,1},{7,6}}; cout<< "Size of the Array:"<<sizeof(a)<<"\n"; cout<< "Content of the Array:"<<sizeof(a)<<"\n"; for(r=0; r<2; r++) { for(c=0; c<2; c++) { cout << " " << a[r][c]; } cout << "\n"; } return 0; }
আউটপুট
Size of the Array:16 Content of the Array:16 3 1 7 6