|
|
От: | winogr | |
| Дата: | 10.03.09 09:27 | ||
| Оценка: | |||
B>2.13.4/1
B>A string literal is a sequence of characters (as defined in 2.13.2) surrounded by double quotes, optionally
B>beginning with the letter L, as in "..." or L"...". A string literal that does not begin with L is an ordinary
B>string literal, also referred to as a narrow string literal. An ordinary string literal has type “array of n
B>const char” and static storage duration (3.7), where n is the size of the string as defined below, and is
B>initialized with the given characters.
B>...