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

这段为什么运行错误而在其他软件上可以运行?

#include<stdio.h>
#include"test.c"
extern void printLine()
{
   printf("***************\n");
}
int say()
{
   printLine();
   printf("I love imooc\n");
   printf("good good study!\n");
   printf("day day day!\n");
   pribtLine();
}
int main()
{
   say();
   return 0;
}


提问者:慕的地7003562 2018-11-28 19:28

个回答

  • 汪叽啊
    2018-12-09 14:54:45

    你确定?你13行没有错?

  • 慕的地7003562
    2018-11-28 19:29:10

    第二行代码注释掉可以在dev-c++上运行