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

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