extern的作用

#include <stdio.h>
extern int a;
static int a;
extern int b;
int b;
static int c;
extern int c;

原文地址:https://www.cnblogs.com/saolv/p/9631901.html