码迷,mamicode.com
首页 > 编程语言 > 详细

C语言的外部变量extern

时间:2014-05-09 06:26:36      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:c语言   外部变量   extern   

C语言的存储类型可分为:extern、auto、static、register。

外部变量定义在函数之外,通过同一个名字对外部变量的所有引用(即使这种引用来自于单独编译的不同函数),实际上都是引用同一个对外部变量的所有引用(C标准中把这一性质称为外部链接)。因此外部变量可以在全局范围内访问。


getChar.c:

#include <stdio.h>
#include <stdlib.h>
extern char str[];//头文件中不用声明
int index_str = 0;
char getChar(){
return str[index_str++];
}


getStr.c:

#include <stdio.h>
#include <stdlib.h>
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

C语言的外部变量extern,布布扣,bubuko.com

C语言的外部变量extern

标签:c语言   外部变量   extern   

原文地址:http://blog.csdn.net/pipisorry/article/details/25346379

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!