Escape Sequences
\n Newline
\t Tab
\r Carriage Return (the cursor will move to the first character of the current line, and any subsequent characters will overwrite the existing characters on the line)
\b The backspace character, represented by the escape sequence "\b", is used to move the cursor one position back in the current line of text.
#include <stdio.h>
int main() {
printf("Hello,\nWorld!\n");
printf("Hello,\tWorld!\n");
printf("Hello,\bWorld!\n");
printf("Hello,\rWorld!\n");
return 0;
}


