i have line:
#define REPORT_HEADINGS_1 "\n Employee Pay Reg Hrs Gross Fed SSI Net\n"
but when I document my source code (print it to pdf for ex) it is too long and it wraps it up
when I try to insert a line break after REPORT_HEADINGS_1
#define REPORT_HEADINGS_1
"\n Employee Pay Reg Hrs Gross Fed SSI Net\n"
it fixes the wrapping problem but the compiler won't read it anymore as it should. I know it's kind of a stupid question but I'm sure there is a easy fix to it.
Thanks in advance