为了账号安全,请及时绑定邮箱和手机立即绑定

这个怎么错了

#include <stdio.h>

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

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

{

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

}

int main()

{

    say();

    return 0;

}


正在回答

2 回答

在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>
extern void printLine();
static void say()
{    
printLine();    
printf("I love imooc\n");    
printf("good good study!\n"); 
printf("day day up!\n");    
printLine();
}


4 回复 有任何疑惑可以回复我~
#1

煽动

为什么extern void printLine();这里的后面要有分号?
2021-01-13 回复 有任何疑惑可以回复我~
#2

慕用0028522 回复 煽动

调用函数需要;
2021-01-16 回复 有任何疑惑可以回复我~

感觉是网站的问题


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926040    人
  • 解答问题       20793    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

这个怎么错了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信