home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day05 / var.c < prev   
C/C++ Source or Header  |  2002-04-14  |  485b  |  29 lines

  1. /* Demonstrates local variables. */
  2.  
  3. #include <stdio.h>
  4.  
  5. int x = 1, y = 2;
  6.  
  7. void demo(void);
  8.  
  9. int main( void )
  10. {
  11.   printf("\nBefore calling demo(), x = %d and y = %d.", x, y);
  12.   demo();
  13.   printf("\nAfter calling demo(), x = %d and y = %d\n.", x, y);
  14.  
  15.   return 0;
  16. }
  17.  
  18. void demo(void)
  19. {
  20.     /* Declare and initialize two local variables. */
  21.  
  22.     int x = 88, y = 99;
  23.  
  24.     /* Display their values. */
  25.  
  26.     printf("\nWithin demo(), x = %d and y = %d.", x, y);
  27. }
  28.  
  29.