![]() |
#2
wfpb2007-03-22 09:40
|
char*a="hello";
char*b;
b=a;
cout<<&a<<" "<<&(*b);
getchar();
return 0;
初学,有个问题弄不名白:
大家谁能解释一下为什么&a输出1245064而&(*b)输出hello啊!
谢了.