首页 > 其他 > 详细

第三次作业

时间:2017-03-31 23:51:18      阅读:295      评论:0      收藏:0      [点我收藏+]
#include"stdio.h"
#include"stdlib.h"
int main()
{
    void fun(int a[10]);
    int a[10]={0};                            //定义一个含有10个整数的数组 并初始化 
    fun(a);
    system("pause"); 
}
void fun(int a[])
{
    int i;
    int *p;
    p=&a[i];
    for(i=0;i<=9;i++)
    printf("%d\n",*p);
}
0
0
0
0
0
0
0
0
0
0
请按任意键继续. . .

 

 

码云账号http://git.oschina.net/wangya17

 

 

 技术分享

 

 

总结:感觉老师这个题很有意思,因为有很多种办法可以让fun函数内不要出现数字10。

那个git感觉不太会用,觉得和我们现在学习的东西难度不太搭。而且windows和git好像不太兼容。

第三次作业

原文:http://www.cnblogs.com/WangandY/p/6647317.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!