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

我把两个文件都复制到同一文件夹下,运行hello.c但无法调用test.c的文件

hello.c
#include <stdio.h>
#include "2.c"   //引用test.c
extern void printLine()     //这里定义的方法对吗?
{
   printf("**************\n");   
}
int main()
{
    say();
    return 0;
}
test.c
#include <stdio.h>
void say(){
    printLine();
    printf("I love imooc\n");
    printf("good good study!\n");
    printf("day day up!\n");
    printLine();
}


提问者:在河之洲1314 2016-10-29 22:39

个回答

  • 小白十号
    2016-10-30 00:31:03
    已采纳

    5814ceb60001065405000367.jpg=-=

    5814ceb60001e01505000308.jpg


  • 小白十号
    2016-10-30 00:23:13

    应该是被调用的函数加extern