view test/static.c @ 440:a531bbf572e3

regression test (case, float, long long)
author kono
date Sat, 20 Nov 2004 17:06:05 +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;
}