int main () { int a = 5,b = 2; printf(\"%d\",a+++++b); return 0; }
This code gives the following error:
error: lval
(a++)++ +b
a++ returns the previous value, a rvalue. You can't increment this.