view test/static.c @ 486:66d4b78f6219

*** empty log message ***
author kono
date Fri, 16 Dec 2005 13:00:01 +0900
parents 32737bad7489
children a379da780856
line wrap: on
line source

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


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

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

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