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

求大佬指点为啥出错

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

提问者:慕斯5381178 2018-10-16 21:54

个回答

  • 慕雪139628
    2018-10-17 10:27:03
    已采纳

    多了一个static