/*+JMJ * longmsg - test C output of long message text * Copyright 2011 David Meyer */ #include /* Seems C prepocessor ignores symbols within character streams, * only substitutes symbols "exposed" in the source code text. */ #define IMB_TEXT "Hello, World!" int main() { printf( "This is a test of multi-line message output --> <-- (line break) with C standard function printf(). This line is very long, emacs wraps it. ==> <== (blank line) Here's some imbedded text: %s\n", IMB_TEXT); exit(0); }