2005년 10월 21일
Escape Sequence Represents
/*
Escape Sequence Represents
\a | Bell (alert) |
| \b | Backspace |
| \f | Formfeed |
| \n | New line |
| \r | Carriage return |
| \t | Horizontal tab |
| \v | Vertical tab |
| \' | Single quotation mark |
| \ " | Double quotation mark |
| \\ | Backslash |
| \? | Literal question mark |
| \ ooo | ASCII character in octal notation |
| \x hh | ASCII character in hexadecimal notation |
| \x hhhh | Unicodecharacter in hexadecimal notation if this escape sequence is used in awide-character constant or a Unicode string literal. For example, WCHAR f = L'\x4e00' or WCHAR b[] = L"The Chinese character for one is \x4e00" |
*/
출처 - MSDN
# by | 2005/10/21 15:50 | in Programming | 트랙백 | 덧글(1)















☞ 내 이글루에 이 글과 관련된 글 쓰기 (트랙백 보내기) [도움말]