这里为什么不能引用test文件呢
#include <stdio.h>
#include "test.c" //引用test.c文件
static void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
#include <stdio.h>
#include "test.c" //引用test.c文件
static void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
2024-02-10
举报