이글루스 | 로그인  


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 NoSyu | 2005/10/21 15:50 | in Programming | 트랙백 | 덧글(1)

트랙백 주소 : http://NoSyu.egloos.com/tb/997389
☞ 내 이글루에 이 글과 관련된 글 쓰기 (트랙백 보내기) [도움말]
Commented by NoSyu at 2006/07/16 11:00
예전에 진행률을 나타나는 함수를 만들기 위해 기록해 두었던 글이다.

:         :

:

비공개 덧글

◀ 이전 페이지          다음 페이지 ▶