Tag: 值rvalue

lvalue需要作为递增操作数错误

#include int main() { int i = 10; printf(“%d\n”, ++(-i)); // <– Error Here } ++(-i)什么问题? 请澄清。