同时查看Can you have a incrementor and a decrementor on the same variable in the same statement in c
我发现您可以在一个变量上有多个前缀递增/递减运算符,但只有一个后缀
ex:
++--++foo; // valid foo++--++; // invalid --foo++; // invalid
这是为什么?