comparison test/static.c @ 157:d5310a5cc8fa

static
author kono
date Tue, 05 Aug 2003 14:50:37 +0900
parents
children 096559f07a70
comparison
equal deleted inserted replaced
156:da529eab5618 157:d5310a5cc8fa
1
2
3 f()
4 {
5 static int count = 55;
6 static int count1;
7
8 printf("%d %d\n",count++,count1++);
9
10 }
11
12 main()
13 {
14 f();
15 f();
16 }