這里為什么不能引用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
舉報
6天前
extern void printLine()?
2024-05-16
我不知道