Macro continuation operator ()

A macro is usually written on a single line.

#define message\_for(a, b) \
 printf(#a " and " #b ": We love you!\n")

If the macro is too long to fit on a single line, use the macro continuation operator \

Comments