view test/static.c @ 492:cc1a5f764782

*** empty log message ***
author kono
date Wed, 21 Dec 2005 12:10:43 +0900
parents a379da780856
children 293f827ccfb2
line wrap: on
line source

int printf(const char *format, ...);


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

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

main()
{
   f();
   f();
    return 0;
}