Macro in C Programming - Complex macro with arguments in c
Learn C - C tutorial - complex macro with arguments in c - C examples - C programs
Complex macro with arguments in c
- Macros that accept arguments appear to be functions.Arguments are not typed as in a C function.
- Macros with arguments must be defined using the #define directive before they used.Argument list is enclosed in parentheses and must immediately follows the macro name.