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