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

为什么"test.c"中的say()函数也要变成static?

hello.c

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


test.c

#include <stdio.h>
static void say(){
    printLine();
    printf("I love imooc\n");
    printf("good good study!\n");
    printf("day day up!\n");
    printLine();
}

提问者:qq_拾起思想的苇草 2017-11-29 16:48

个回答

  • xx_14330910
    2017-11-29 19:42:59

    我把这两个代码放到了一个项目下运行,test中的void改成static和不改static都能运行且没有错误。只能说这个在线代码太死板了。