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

为什么这么写还是报错,求大佬看看

#include <stdio.h>

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

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:qq_浪人独道_0 2018-10-20 14:24

个回答

  • 天才legend
    2018-10-20 20:02:55
    已采纳

    hello.c从test.c调用函数,所以是extern       test.c要设置一个静态函数,所以加static

  • 天才legend
    2018-10-20 19:56:33

    注意观察一下编写时左上角有个test.c,不是hello.c