This question is in response to What is &&& operation in C which got me thinking about &
being used both as binary AND and address-of.
Why is the same symbol used for both these very dissimilar tasks? When thinking about it, @
would seem to be a better symbol for address-of.
I don't expect it to cause much problem in practice since the compiler will probably catch most faulty use, but it would probably be possible to create code involving macros that looks like it is doing a binary AND while it is actually doing address-of.