view test/static.c @ 171:3902240d4930

*** empty log message ***
author kono
date Mon, 24 Nov 2003 20:28:19 +0900
parents d5310a5cc8fa
children 096559f07a70
line wrap: on
line source



f()
{
   static int count = 55;
   static int count1;

   printf("%d %d\n",count++,count1++);
  
}

main()
{
   f();
   f();
}