Macros
macros helps you "find and replace all" when you compile your code
Macros
Associates a name with a piece of code. During preprocessing, the compiler will replace all encounters of the name with the corresponding code. Macros are defined with the #define
directive.
Macro Functions
Macros can take arguments and can be used like functions.
Sample Code
Last updated