home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / STATIC.C < prev    next >
Encoding:
Text File  |  1985-01-20  |  297 b   |  20 lines

  1. main()    /* demonstrates use of static */
  2. {
  3.     int i;
  4.  
  5.     for( i= 0; i < 10; ++i)
  6.         static_demo();
  7. }
  8.  
  9. static_demo()
  10.     {
  11.         int variable = 0;
  12.         static int static_variable = 0;
  13.  
  14.         printf("automatic = %d, static = %d\n", variable,
  15. static_variable);
  16.         ++variable;
  17.         ++static_variable;
  18.     }
  19.  
  20.