TA贡献1757条经验 获得超8个赞
void printf_2Array(int * array,int row,int column ){int i = 0;int j = 0;for(i; i<row; i++){for(j; j<column ; j++){printf("the value at row %d and column %d is %d \r\n",i,j,array((i*column) + j));}}}
TA贡献1853条经验 获得超9个赞
操作数组,一般是用指针形式去使用
举报