home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list12_1.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  225b  |  19 lines

  1.  /* Illustrates variable scope. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  int x = 999;
  6.  
  7.  void print_value(void);
  8.  
  9.  main()
  10.  {
  11.      printf("%d", x);
  12.      print_value();
  13.  }
  14.  
  15.  void print_value(void)
  16.  {
  17.      printf("%d", x);
  18.  }
  19.