Electron microscopy
 
Character Escape Sequences
- Practical Electron Microscopy and Database -
- An Online Book -
Microanalysis | EM Book                                                                                   http://www.globalsino.com/EM/        


=================================================================================

 

Certain characters, such as the single and double quotes, have special meaning in C++ and thus in DM. Therefore, they cannot be used directly. For these reason, C++ provides the character escape sequences shown in Table 1138.

Table 1138. character escape sequences.

Code
Meaning
\n newline
\t horizontal tab
\b backspace
\f form feed
\r carriage return
\" double quote
\' single quote character
\\ backslash
\v vertical tab
\a alert
\? ?
\N octal constant (where N is an octal constant)
\xN hexadecimal constant (where N is a hexadecimal constant)

 

 

 

=================================================================================