為啥兩個#include <stdio.h> #include "test.c" 怎么用????
#include <stdio.h>
#include "test.c"?? //引用test.c文件
extern void printLine()???? //這里定義的方法對嗎?
{
?? printf("**************\n");? ?
}
int main()
{
??? say();
??? return 0;
}
#include <stdio.h>
#include "test.c"?? //引用test.c文件
extern void printLine()???? //這里定義的方法對嗎?
{
?? printf("**************\n");? ?
}
int main()
{
??? say();
??? return 0;
}
2017-04-23
舉報
2017-04-23
尖括號和引號的引用方式不同,具體你可以去CSDN看一下他們的區(qū)別