- 论坛徽章:
- 0
|
没人回帖,我自己顶一下!
我自己写了一个测试程序如下:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i,j;
unsigned char value = 10;
for(i = 0;i < 50;i++)
{
unsigned char temp = value;
printf("%d temp = %ud ",i,temp);
printf("%d &temp = %ud\n",i,&temp);
}
for(j = 0;j < 50;j++)
{
unsigned char temp = value;
printf("%d temp = %ud ",j,temp);
printf("%d &temp = %ud\n",j,&temp);
}
}
编译通过,且运行结果为:
0 temp = 10d 0 &temp = 3218612227d
1 temp = 10d 1 &temp = 3218612227d
2 temp = 10d 2 &temp = 3218612227d
3 temp = 10d 3 &temp = 3218612227d
4 temp = 10d 4 &temp = 3218612227d
5 temp = 10d 5 &temp = 3218612227d
6 temp = 10d 6 &temp = 3218612227d
7 temp = 10d 7 &temp = 3218612227d
8 temp = 10d 8 &temp = 3218612227d
9 temp = 10d 9 &temp = 3218612227d
10 temp = 10d 10 &temp = 3218612227d
11 temp = 10d 11 &temp = 3218612227d
12 temp = 10d 12 &temp = 3218612227d
。。。。。。。。。。。。。。。。。。。。。。。。
0 temp = 10d 0 &temp = 3218612226d
1 temp = 10d 1 &temp = 3218612226d
2 temp = 10d 2 &temp = 3218612226d
3 temp = 10d 3 &temp = 3218612226d
4 temp = 10d 4 &temp = 3218612226d
5 temp = 10d 5 &temp = 3218612226d
6 temp = 10d 6 &temp = 3218612226d
7 temp = 10d 7 &temp = 3218612226d
8 temp = 10d 8 &temp = 3218612226d
9 temp = 10d 9 &temp = 3218612226d
10 temp = 10d 10 &temp = 3218612226d
11 temp = 10d 11 &temp = 3218612226d
12 temp = 10d 12 &temp = 3218612226d
。。。。。。。。。。。。。。。。。。。。。。。。
相信看运行结果,大家已经清楚为什么了。详细可以去看一下GNU C标准。
说说这样写的好处:作用范围只在{}之内,使代码更加清晰。因为不需要将所有的局部变量全部定义在函数的开头;若函数太长时,这样写阅读代码时更加方便;
|
|