home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day12 / Ex12_03.c < prev    next >
C/C++ Source or Header  |  2002-05-04  |  231b  |  19 lines

  1. /* Using a global variable */
  2. #include <stdio.h>
  3.  
  4. int var = 99;
  5.  
  6. void print_value(void);
  7.  
  8. int main( void )
  9. {
  10.     print_value();
  11.     return 0;
  12. }
  13.  
  14. void print_value(void)
  15. {
  16.     printf( "The value is %d\n", var );
  17. }
  18.  
  19.