标题: 笔记 [打印本页] 作者: 15132876050 时间: 2015-8-17 21:34 标题: 笔记 #include <stdio.h>
#include "test.h"
static int num = 10;//声明同名变量
//extern int a = 10;//不允许,因为test.c文件中已经定义a了
//全局声明
//2)extern int a;
//
//int a;//3)省略了extern
//不能声明不存在的变量
extern int b;
int x;//全局变量默认初始化为0
int main() {