如何把一个一组数组中存储的数组转储到二维数组中?求帮忙。
比如有一个一维的大小为9的数组中的数据转储到[3][3]的二维数组中?
程序代码:
#include<stdio.h> main() { int a[9]={1,2,3,4,5,6,7,8,9}; int b[3][3]; int i,j; for(i=0;i<3;i++) for(j=0;j<3;j++) b[i][j]=a[i*3+j]; for(i=0;i<3;i++) for(j=0;j<3;j++) printf("%d ",b[i][j]); printf("\n"); }