问答详情
源自:5-13 内部函数与外部函数

求大神解答哪里错了

#include <stdio.h>

#include "test.c"   //引用test.c文件

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:葵藿 2020-02-10 16:51

个回答

  • 慕少6168890
    2020-02-19 11:55:07

    把代码换成

    #include <stdio.h>

    extern void printLine()     

    {

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

    }

    void say(){

        printLine();

        printf("I love imooc\n");

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

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

        printLine();

    }

    int main()

    {

        say();

        return 0;

    };

    让后去掉第二个源文件


  • 小白拜
    2020-02-11 11:51:52

    打开“test.c”界面,在void say()前加上static即可。