다차원 배열에서는 배열의 차원이 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
위 내용은 C/C++에서 다차원 배열 초기화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!