C examples for Language Basics:printf
Printing long strings with \
#include <stdio.h> int main(void) { printf("line 1 "); printf("line 2.\n"); printf("Here's another way to print a \ long string.\n");/*from ww w. ja va2 s. co m*/ printf("Here's the newest way to print a " "long string.\n"); /* ANSI C */ return 0; }