The C Preprocessor :: Parameterized Macros
The C Preprocessor :: Parameterized Macros One of the powerful functions of the CPP is the ability to simulate functions using parameterized macros. For example, we might have some code to square a number: int square(int x) { return x * x; …