malloc動態申請一個二維陣列的兩種方法 - 程式人生

文章推薦指數: 80 %
投票人數:10人

... 記得釋放空間 free(a[i]); free(a); return 0; }. 方法二:用陣列指標形式申請 #include #include const int num = 2; ... 程式人生>>malloc動態申請一個二維陣列的兩種方法 malloc動態申請一個二維陣列的兩種方法 阿新••發佈:2018-11-12 方法一:利用二級指標申請 #include #include constintnum=2; intmain(){ int**a=(int**)malloc(num*sizeof(int*)); for(inti=0;i #include constintnum=2; intmain(){ int(*a)[num]=(int(*)[num])malloc(num*num*sizeof(int)); for(inti=0;i #include constint... 【c語言】動態開闢一個二維陣列 //動態開闢一個二維陣列 #include #include



請為這篇文章評分?