求一个简单的问题,关于自减的
#include <stdio.h>#include <stdlib.h>
int main()
{
int a=12;
int b=1;
int c=a-(b--); // ①
int d=(++a)-(--b); // ②
printf("c=%d, d=%d\n", c, d);
system("pause");
return 0;
}
2016-03-17 11:35
2016-03-17 11:39
2016-03-17 11:40
2016-03-17 11:42
2016-03-17 11:48
2016-03-17 11:50
2016-03-17 11:53
2016-03-17 12:02