![]() |
#2
quietstar2010-04-09 12:45
|
#include<iostream>
using namespace std;
int main()
{
int str[10]={6,7,8,9,10};
int *p;
p=str;
*(p++)+=123;
cout<<*p<<" "<<*(p++)<<endl;
return 0;
}
为什么输出结果是8 7