#include<stdio.h> int main() { void fun(int a[]); int a[]={1,2,3,4,5,6,7,8,9,10}; fun(a); } void fun(int a[]) { int i,*p; p=&a[i]; for(i=0;i<=9;i++) printf("%d\n",a[i]); }
运行结果:
1 2 3 4 5 6 7 8 9 10 -------------------------------- Process exited after 0.2992 seconds with return value 3 请按任意键继续. . .
代码总结:以我现在的能力只能做点简单的,难点的也不会,感觉应该没啥错的地方,就是简单了些。
遇到的问题:写的时候如果输出*p的话输出的全是1,改成a[i]就可以正常输出了。
词典截图:
码云帐号:1197178284@qq.com
原文:http://www.cnblogs.com/forever-cool/p/6666340.html