5.13的任务怎么搞
小编把代码编辑器中的某个方法定义错了,你能帮他改正吗?
在代码编辑器中:
第3行将函数改为外部函数
运行结果为
hello.ctest.c
#include <stdio.h>
#include "test.c" //引用test.c文件
static void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}