I'm trying to come up with all examples when removing whitespace between operators in valid C or C++ code changes its meaning (by changing it to code which does something else or which doesn't compile).
I enumerated http://en.wikipedia.org/wiki/Operators_in_C_and_C++ and I could come up with:
+ +
:
int f(int a) { return a + /**/ +5; }
- -
:
int f(int a) { return a - /**/ -5; }
I was trying 1& &p
as well, but I couldn't make it compile with a space, I always got type errors.
I'm looking for answers in the following format: a valid C or C++ code snippet with /**/
and spaces between two operators (see two examples above). The removal of /**/
and the surrounding whitespace must produce a compile error or change the meaning of the compiled program.
Some context why I need it: I'm writing a C and C++ source translator which removes unnecessary whitespace. To make it correct, I need to understand when whitespace can't be removed without changing the meaning of the code.
Here's an example to serve as a sort of proof that your examples are not the only ones. But surely there are plenty more that can be created, so I won't try to enumerate them.