qq_浪人独道_0
2018-10-20 14:24
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
hello.c从test.c调用函数,所以是extern test.c要设置一个静态函数,所以加static
注意观察一下编写时左上角有个test.c,不是hello.c
C语言入门
926028 学习 · 20793 问题
相似问题