码迷,mamicode.com
首页 > 其他好文 > 详细

作业三

时间:2017-04-03 22:01:34      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:amp   std   clu   主函数   帮助   pre   turn   style   seconds   

#include<stdio.h>
int main() {
    void fun(int a[9]);
    int a[9]= {5};
    fun(a);
}
void fun(int a[]) {
    int i;
    int *p;
    p=&a[i];
    for(i=0; i<=9; i++)
        printf("%d  ",*p);
}/*5  5  5  5  5  5  5  5  5  5
--------------------------------
Process exited after 0.03118 seconds with return value 0
请按任意键继续. . .*/

技术分享

码云账号:736091137@qq.com

总结?:这次作业吧,在码云这个地方花的时间比解决代码花了更多时间呢。代码上面话在fun函数上花了比较多的时间,主要是在fun函数在主函数中的套用上出了问题,最后在同学帮助下勉强解决了。

作业三

标签:amp   std   clu   主函数   帮助   pre   turn   style   seconds   

原文地址:http://www.cnblogs.com/Sukura159808/p/6663716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!