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

为什么按这个代码输出会得到两列*号呢?

麻烦大佬给我解释一下这个代码的运行方式或者顺序

#include <stdio.h>

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

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:慕函数3031282 2019-01-19 17:54

个回答

  • 性感中单赵本山
    2019-01-19 19:01:30

    他引用了hello.c文件旁边另一个test.c文件,test.c文件中还有函数

    https://img1.mukewang.com/5c4303670001e84405690272.jpg

    https://img3.mukewang.com/5c4303850001856e04160233.jpg