C++ Preprocessor Operators
What are C++ Preprocessor Operators? Following preprocessor operators are available in C++ that could be used with the #define directive. # is stringify operator turns the operand into a string. Can be used only in macro replacement text. Macro parameter name must follow this operator. ## is concatentation operator to cat preprocessor tokens. Can be …