为什么Dev-c++输出变量地址值这样的
请输入i值4964876206487620
--------------------------------
Process exited after 2.776 seconds with return value 7
请按任意键继续. . .
long i;
long *p;
printf("请输入i值");
scanf("%ld", &i);
p = &i;
printf("%ld", &*p);
printf("%ld", &i);
难道地址不可以输出吗?