|
|
#2
寒风中的细雨2012-04-16 12:39
|
void main()
{
int *p,*q,i=8;
p=&i;
*q=*p;
cout<<*q<<endl;
}
是出不来结果的。。。。
为什么呢???
还有int *ptr;
*ptr=7;
有什么不妥之处吗????