C Input and Output

C uses some backslash characters in output functions for formatting the output. These characters are called as Escape sequence characters.for example \t for tab.

Escape Sequences List

Escape SequencesDescription
\aAlarm or Beep
\bBackspace
\fForm Feed
\nNew Line
\rCarriage Return
\tTab (Horizontal)
\vVertical Tab
\\Backslash
\'Single Quote
\"Double Quote
\?Question Mark
\nnnoctal number
\xhhhexadecimal number
\0Null

For example program given below

#include 
int main() {
   Printf(\"tutorial44.com\" \n is best \t site for \n learning c language);return 0;
}
"tutorial44.com"
is best site for
learning c language