c++指针问题
#include <iostream>using namespace std;
void prt(int*x,int *y,int *z)
{
cout<<++*x<<","<<++*y<<","<<*(z++)<<endl;
}
int a=10,b=40,c=20;
void main()
{
prt(&a,&b,&c);
prt(&a,&b,&c);
}
结果为 11,41,20;
12,42,20;
为什么*(z++)的值不变???为什么20;求各位帮忙。