#include <stdio.h> int main() { int i = 10; printf("%d\n", ++(-i)); // <-- Error Here }
有什么问题++(-i)?请澄清.
++(-i)
c c++ operators rvalue lvalue
c ×1
c++ ×1
lvalue ×1
operators ×1
rvalue ×1