view test/static.c @ 157:d5310a5cc8fa

static
author kono
date Tue, 05 Aug 2003 14:50:37 +0900
parents
children 096559f07a70
line wrap: on
line source



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

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

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