Variable.cpp
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <conio.h>
  2. #include <stdio.h>
  3. int GLOBAL;
  4. void TEST();
  5. int main(void)
  6. {
  7. TEST();
  8. printf("nGLOBAL=%d",GLOBAL);
  9. //printf("nLOCAL=%d",LOCAL);
  10. getch();
  11. return 0;
  12. }
  13. void TEST()
  14. {
  15. int LOCAL;
  16. LOCAL=10;
  17. printf("nLOCAL=%d",LOCAL);
  18. GLOBAL=20;
  19. }