那个test.c不见了怎么办?重置代码也没用

来源:5-13 内部函数与外部函数

先生莫知何许人也

2018-08-31 09:42

12345

写回答 关注

4回答

  • 慕九州5552665
    2018-09-05 13:35:42
    已采纳

    hello.c

    #include <stdio.h>

    void say();

    extern void printLine()     

    {

       printf("**************\n");   

    }

    int main()

    {

        say();

        return 0;

    }



    test.c

    #include <stdio.h>

    void say(){

        printLine();

        printf("I love imooc\n");

        printf("good good study!\n");

        printf("day day up!\n");

        printLine();

    }


  • 慕九州5552665
    2018-09-05 13:33:50

    补一个:

    #include <stdio.h>

    void say(){

        printLine();

        printf("I love imooc\n");

        printf("good good study!\n");

        printf("day day up!\n");

        printLine();

    }

    test.c程序。

    慕九州555... 回复PRRRR

    我就是我。。。。。。。

    2018-11-03 17:19:49

    共 2 条回复 >

  • 慕九州5552665
    2018-09-05 13:32:16

    #include <stdio.h>


    void say();

    extern void printLine()     //这里定义的方法对吗?

    {

       printf("**************\n");   

    }

    int main()

    {

        say();

        return 0;

    }

    你也可以重置代码呀!看看我的怎么样o(* ̄︶ ̄*)o

  • 慕九州5552665
    2018-09-02 13:32:33

    什么意思?

    先生莫知何许...

    这个程序不是有个hello.c和一个test.c吗?我把test.c那个剪切到hello.c后,test.c没了,重置代码也没用

    2018-09-05 13:24:08

    共 1 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题