为什么我这段代码一直是错的,后面调用了test.c

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

qq_D_167

2017-11-26 19:56


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

写回答 关注

2回答

  • qq_无名_120
    2018-03-17 21:39:45
    static void say()


  • 鲁大湿
    2017-11-26 21:08:32

    你看这道题的输出样式,你还差printf("I love imooc")后面的你应该知道了

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题