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

来源:5-13 内部函数与外部函数

在河之洲1314

2016-10-29 22:39

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();
}


写回答 关注

2回答

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

    5814ceb60001065405000367.jpg=-=

    5814ceb60001e01505000308.jpg


    在河之洲13...

    非常感谢!

    2016-10-30 13:39:52

    共 1 条回复 >

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

    应该是被调用的函数加extern

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题