技术岗不用看老板脸色
2018-03-24 21:56
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
错那了??
小编的错,把第二行删掉就可以了
test.c
void printLine();
static void say(){
C语言入门
926021 学习 · 20793 问题
相似问题