Necessity of newlines in C: Character sequences recognized as such and simulating line breaks after
Posted
by Yktula
on Stack Overflow
See other posts from Stack Overflow
or by Yktula
Published on 2010-04-25T18:20:57Z
Indexed on
2010/04/25
18:23 UTC
Read the original article
Hit count: 238
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); }
© Stack Overflow or respective owner