What does the C++ standard say about using dollar signs in identifiers, such as Hello$World? Are they legal?
Hello$World
They are not legal in C++. However some C/C++ derived languages (such as Java and JavaScript) do allow them.