C++ Escape Sequences
Category | programming | |
Tags | ||
Created |
List of C++ Escape Sequences for strings
Name | Sequence | Meaning |
---|---|---|
Alert | \a | Makes an alert, such as a beep |
Backspace | \b | Moves the cursor back one space |
Formfeed | \f | Moves the cursor to next logical page |
Newline | \n | Moves cursor to next line |
Carriage return | \r | Moves cursor to beginning of line |
Horizontal tab | \t | Prints a horizontal tab |
Vertical tab | \v | Prints a vertical tab |
Single quote | \\' | Prints a single quote |
Double quote | \" | Prints a double quote |
Backslash | \\ | Prints a backslash |
Octal number | \(number) | Translates into char represented by octal |
Hex number | \x(number) | Translates into char represented by hex number |