[求助]帮解释一下这个程序运行后的结果,谢谢
请问这个程序运行后结果为什么是
x=10,y=10
x=100,y=100------->Why?
谢谢呀!@_@
#include<iostream.h>
void main()
{
int x=10,&y=x;
cout<<"x="<<x<<",y="<<y<<endl;
int *p=&y;
*p=100;
cout<<"x="<<x<<",y="<<y<<endl;
}
[此贴子已经被作者于2007-3-17 14:58:05编辑过]