view test/static.c @ 460:2859bb9d5fb3

volatile/const
author kono
date Thu, 02 Dec 2004 12:07:16 +0900
parents 0c256ea2a97e
children 32737bad7489
line wrap: on
line source



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

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

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