码迷,mamicode.com
首页 > 编程语言 > 详细

输出二维数组各元素的值第二版

时间:2018-08-01 16:04:04      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:turn   code   ram   etc   ret   ace   out   return   getch   

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     void output(int(*p)[4]);
 7     int a[3][4]={1,3,5,7,8,9,12,14,15,32,11,14};
 8     output(a);
 9     return 0;
10 }
11 
12 void output(int(*p)[4]){
13     int i,j;
14     for(i=0;i<3;i++)
15     for(j=0;j<4;j++)
16     cout<<*(*(p+i)+j)<<" ";
17     cout<<endl;
18 }

 

输出二维数组各元素的值第二版

标签:turn   code   ram   etc   ret   ace   out   return   getch   

原文地址:https://www.cnblogs.com/borter/p/9401507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!