c语言入门教程–-12作用域
1在函数或块内部的局部变量 2在所有函数外部的全局变量
代码语言:javascript复制#include <stdio.h>
int b;//全局变量,整个代码所有位置都可以用
int main ()
{
/* 局部变量声明,只有在main函数可以用 */
int a;
printf ("value of a = %dn", a);
return 0;
}
int Do()
{
int c; //局部变量,只能在Do函数中使用
c=2;
return c;
}
发布者:全栈程序员栈长,转转请注明出处:https://javaforall.cn/2910.html原文链接: