第三次作业
Posted zhangyi12
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三次作业相关的知识,希望对你有一定的参考价值。
码云账号:744243106@qq.com
#include<stdio.h> int main() { void fun( int a[10]); int a[10]={9}; fun(a); } void fun (int a[]) { int i; int*p; p=&a[i]; for(i=0;i<=9;i++) printf("%d\\n",*p); }
9 9 9 9 9 9 9 9 9 9 请按任意键继续....
总结:感觉对代码编写很不熟练,以后会多加练习。
以上是关于第三次作业的主要内容,如果未能解决你的问题,请参考以下文章