Operating conditions in the VS2013 environment
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int i = 1;
Int J = (++i) + (++i) + (++i);
printf ("%d", j);
System ("pause");
return 0;
}
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/75/0E/wKioL1Yxw32R1ocPAABcRxBpcxk199.jpg "title=" QQ picture 20151029145734.jpg "alt=" Wkiol1yxw32r1ocpaabcrxbpcxk199.jpg "/>
Operating conditions in the vc6.0 environment
#include <stdio.h>
int main ()
{
int i=1;
int j= (++i) + (++i) + (++i);
printf ("%d", j);
return 0;
}
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/75/0E/wKioL1Yxw9jh0oThAABVpM5z9ZM990.jpg "title=" QQ picture 21.png "alt=" Wkiol1yxw9jh0othaabvpm5z9zm990.jpg "/>
This article is from the "Qin-wang" blog, make sure to keep this source http://10810196.blog.51cto.com/10800196/1707715
Analysis of different operation results based on i++ of different systems--Continuous updating