view test/static.c @ 168:b1297c82e926 cpost-removal

cpostinc removal
author kono
date Mon, 24 Nov 2003 19:14:45 +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();
}