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

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