p..<关于数组和指针>: 1.先看一个程序,你认为如果编译它,哪里会有错误? 1 #include <stdio.h> 2 #include <conio.h> 3 char a[2][2] = {{1,1},{2,2}}; 4 void fuc_1(char **a) 5 { 6 printf("%d",a[0][1]); 7 } 8 void fuc_2(char (*a)[]) 9 { 10 printf("%d",a[0][1]);//invalid use of array with unspecified Read More
posted @ 2011-03-06 17:14 Finux_you Views(508) Comments(0) Diggs(0) Edit