外部變量定義在函數之外,通過同一個名字對外部變量的所有引用(即使這種引用來自於單獨編譯的不同函數),實際上都是引用同一個對外部變量的所有引用(C標准中把這一性質稱為外部鏈接)。因此外部變量可以在全局范圍內訪問。
getChar.c:
#include
#include
extern char str[];//頭文件中不用聲明
int index_str = 0;
char getChar(){
return str[index_str++];
}
getStr.c:
#include
#include
char str[255];
/*get the testfile string */
void getStr(char* filename){
int index = 0;
FILE* fp;
if( (fp = fopen(filename,"r") ) == NULL){
printf("open test_file fail !!!\n");
exit(1);
}
while((str[index++] = getc(fp))!=EOF);
str[index] = '\0';/*結尾標志*/
fclose(fp);
}
http://blog.csdn.net/pipisorry/article/details/25346379