我的第三次作业
Posted 沉默的鸡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的第三次作业相关的知识,希望对你有一定的参考价值。
v
#include<stdio.h> void fun(int *p) { int i; for(i=0;i<10;i++) printf("%d\\n",*(p+i)); } int main() { int a[10]={0,1,2,3,4,5,6,7,8,9}; int *p; p=a; fun(p); }
复制代码
运行结果: 1 3 5 7 9
-------------------------------- Process exited after 0.1473 seconds with return value 0 请按任意键继续. . .
我的码云账号是1015180720@qq.com
以上是关于我的第三次作业的主要内容,如果未能解决你的问题,请参考以下文章