7 printf("a=%d,b=%d,",a,b);
8 #endif
9 printf("c=%d\n",c);
10 }
程序运行结果:
c=0
同学们想一想结果为什么是零,而不是0.5。
例7.5b
1 #include <stdio.h>
2 #define DEBUG
上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] 下一页