慕运维0314343
2017-08-09 20:51
小编把代码编辑器中的某个方法定义错了,你能帮他改正吗?
在代码编辑器中:
第3行将函数改为外部函数
运行结果为
hello.ctest.c
#include <stdio.h>
#include "test.c" //引用test.c文件
static void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
test.c怎么写啊
C语言规定,在没有指定函数的作用范围时,系统会默认认为是外部函数,因此当需要定义外部函数时extern也可以省略,任务是要你把第三行的函数改为外部函数,即定义为外部函数
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //用extern
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
C语言入门
926026 学习 · 20793 问题
相似问题