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

为什么会运行失败

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

提问者:錯U 2020-08-14 17:41

个回答

  • 慕数据1468201
    2020-10-03 00:23:01


    还需要把test.c里面say改成static,就成功了