能猜出运行结果吗?
void xprint(int a, int b, int c){
printf("%d %d %d \n", a, b, c);
}
void main()
{
int x;
x = 2;
xprint(x++, ++x, x+1);
x = 2;
xprint(x++, x++, x++ );
x = 2;
xprint(++x, ++x, ++x);
printf("\n *** Press any key to continue *** \n");
getch();
} |