首頁 > 後端開發 > C++ > 在C/C++中初始化多維數組

在C/C++中初始化多維數組

王林
發布: 2023-09-15 15:29:01
轉載
697 人瀏覽過

在多維數組中,數組的維數應該大於1。下圖展示了一個維數為3 x 3 x 3的多維數組的記憶體分配策略。

在C/C++中初始化多維數組

這是一個用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中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板