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

哪里错了 啊?

#include <stdio.h>
#include "test.c"  
extern void printLine()     //这里定义的方法对吗?
{
   printf("**************\n");  
}
int main()
{
    say();
    return 0;
}


提问者:孤独的血小板 2018-10-19 20:06

个回答

  • 天才legend
    2018-10-20 19:58:06
    已采纳

    你没有注意到你是在hello.c里面编写代码吗。。。左上角切成test.c,好好检查一下试一试

  • 天才legend
    2018-10-20 20:04:07

    hello.c 调用函数     test.c设置静态函数