Macro Processor Examples
Macro Processor Examples
.ERR: signals to MASM that an error has been detected EXITM: directs MASM to terminate the expansion of the macro The macro parameters in MASM need not begin with & or any special character
Stringizing operator, #
Used to perform argument substitution in quoted strings #define DISPLAY(EXPR) printf(#EXPR = %d\n, EXPR)
Example 2
#endif