What do the last lines mean?
a=0;
b=0;
c=0;
a && b++;
c || b--;
Can you vary this question to explain with more interesting example?
|
What do the last lines mean?
Can you vary this question to explain with more interesting example?
| |||||||
feedback
|
|
For the example you gave: if Due to the rules of short-circuiting evaluation, that is. You could also test this out with a function as the right-hand-side argument;
Output:
| |||||
feedback
|
but there is no point to writing these kind of expression. It doesn't compile to better code and is less readable in almost all cases even if it looks shorter. | |||
|
feedback
|