view test/static.c @ 288:ce7b4d90bc24

PowerPC code bool
author kono
date Thu, 03 Jun 2004 13:15:05 +0900
parents 096559f07a70
children 0c256ea2a97e
line wrap: on
line source



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

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

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