view test/static.c @ 550:df60b120675d

*** empty log message ***
author kono
date Tue, 03 Jan 2006 22:23:26 +0900 (2006-01-03)
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;
}