lvalue tag

1 questions


1 answers
59 views
0
Why does a++++b show an error?

int main (){ int a = 5,b = 2; printf(%d,a+++++b); return 0;}error: lvalue required as increment operandThe code above cannot be executed, but if you write a++++b together, it will be executed, right?W...

2 years ago

© 2024 OneMinuteCode. All rights reserved.