Necessity of newlines in C: Character sequences recognized as such and simulating line breaks after
- by Yktula
Is there a character sequence recognized as a newline that's defined by the C standard and/or recognized by GCC? How can newlines be simulated after preprocessor macros to have them and C code share the same line?
#include <stdlib.h> [NEWLINE] int main() { exit(EXIT_SUCCESS); }