Escape Sequences/Execution characters
Escape Sequence / Execution Character Some characters such as newline, tab, backspace cannot be displayed like other normal characters. C supports the combination of backslash (\) and some characters from the C character for representing these character in our C programs. These character combinations are known as escape sequences and are represented by two characters. The first character is "\" and second character is from the C character set. some escape sequences are given below - Escape sequence Meaning purpose \a Beep /alert Produce an audible and visible alert \b Backspace Move the cursor to the previous position of the current line. \f Form feed Moves the cursor to the initial position of the next logical page. \r Carriage return Moves the cursor to the beginning of the current line \t Tab (horizont...