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

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


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

提问者:qq_D_167 2017-11-26 19:56

个回答

  • qq_无名_120
    2018-03-17 21:39:45

    static void say()


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

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