#include /* some special characters */ int main() { printf("Newline: This is one line. \n This is the next line\n\n"); printf("Bell: This is one line. \a This is the next line\n\n"); printf("Backspace: This is one line. \b This is the next line\n\n"); printf("Formfeed: This is one line. \f This is the next line\n\n"); printf("Tab: This is one line. \t This is the next line\n\n"); printf("Backslash: This is one line. \\ This is the next line\n\n"); printf("Double quote: This is one line. \" This is the next line\n\n"); }