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

  1.  /* Demonstrates automatic and static local variables. */
  2.  #include <stdio.h>
  3.  void func1(void);
  4.  main()
  5.  {
  6.      int count;
  7.  
  8.      for (count = 0; count < 20; count++)
  9.      {
  10.          printf("At iteration %d: ", count);
  11.          func1();
  12.      }
  13.  }
  14.  
  15.  void func1(void)
  16.  {
  17.      static int x = 0;
  18.      int y = 0;
  19.  
  20.      printf("x = %d, y = %d\n", x++, y++);
  21.  }
  22.