Add a backslash for continuation. If it is a string, you can split the string over several lines
Code:
// lame example
#define tangent(x)  \
    sin(x) / \
    cos(x)

// Remember to put a space after the "
#define PANGRAM \
    "Xylophone wizard " \
    "begets " \
    "quick jive form"