Variable.cpp
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:
Windows编程
开发平台:
Visual C++
- #include <conio.h>
- #include <stdio.h>
- int GLOBAL;
- void TEST();
- int main(void)
- {
- TEST();
- printf("nGLOBAL=%d",GLOBAL);
- //printf("nLOCAL=%d",LOCAL);
- getch();
- return 0;
- }
- void TEST()
- {
- int LOCAL;
- LOCAL=10;
- printf("nLOCAL=%d",LOCAL);
- GLOBAL=20;
- }