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

将函数改为外部函数

#include <stdio.h>

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

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:小可爱7758521 2017-08-03 18:20

个回答

  • 用户1192387
    2017-08-04 15:39:21
    已采纳

    test.c文件中的say()前面加一个extern