摘要: 1.传递数组指针 1 #include <stdio.h> 2 void output( int (*pa)[3], int n )//这个函数只能输出n行3列的二维数组 3 { 4 int i,j; 5 for( i=0;i<n;i++ ){ 6 for( j=0;j<3;j++ ) 7 prin 阅读全文
posted @ 2017-06-17 12:57 andyalgorithm 阅读(298) 评论(0) 推荐(0)