test.(c/cpp)
#include int main(int argc, char** argv) { int a = 0, b = 0; printf(\"a = %d, b = %d\\n\", a, b); b = (+
§5.2.7 Increment and decrement:
The value of a postfix ++ expression is the value of its operand. [ ... ] The operand shall be a modifiable lvalue.
++
The error you get in your C compilation helps to suggest that this is only a feature present in C++.