home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_02 / 1102118a < prev    next >
Text File  |  1992-12-08  |  256b  |  16 lines

  1.      static int cnt;
  2.      void test()
  3.           {
  4.           cnt++;
  5.           printf("Cnt is %d\n", cnt);
  6.           }
  7.  
  8.      static int cnt;
  9.      
  10.      void test1()
  11.           {
  12.           cnt++;
  13.           printf("cnt is %d", cnt);
  14.           }
  15.  
  16.