How is the expression x---y parsed? Is it a legal expression?
|
|
It's legal and parsed as I believe the first two minus signs are interpreted as a post-decrement operator because it's the longest token following |
|||
|
|
|
For all data types, it's parsed as |
|||
|
|
|
This is related to operator precedence. Have a look at this table. The decrement/increment operator has precedence over the arithmetic operations. It will be parsed as To correct my answer: The parser matches the longest token first, so |
|||||||||||||||||||||
|