首页题库练习题目详情
C语言程序设计单选题中等

以下哪个变量的定义属于全局变量?

Aint a; void fun() { ... }
Bvoid fun() { int b; ... }
Cstatic int c; ...
Dint d = 5; void fun() { ... }