Using the GNU Compiler Collection (GCC): Characters implementation |
---|
Next: Integers implementation, Previous: Identifiers implementation, Up: C Implementation [Contents][Index]
Determined by ABI.
Determined by ABI.
Determined by ABI.
char
object into which has been stored any
character other than a member of the basic execution character set
(C90 6.1.2.5, C99 and C11 6.2.5).
Determined by ABI.
signed char
or unsigned char
has the same
range, representation, and behavior as “plain” char
(C90
6.1.2.5, C90 6.2.1.1, C99 and C11 6.2.5, C99 and C11 6.3.1.1).
Determined by ABI. The options -funsigned-char and -fsigned-char change the default. See Options Controlling C Dialect.
Determined by ABI.
See Implementation-defined behavior in The C Preprocessor.
See Implementation-defined behavior in The C Preprocessor.
See Implementation-defined behavior in The C Preprocessor.
Such tokens may not be concatenated.
See Implementation-defined behavior in The C Preprocessor.
See Implementation-defined behavior in The C Preprocessor.
wchar_t
, char16_t
, and
char32_t
where the corresponding standard encoding macro
(__STDC_ISO_10646__
, __STDC_UTF_16__
, or
__STDC_UTF_32__
) is not defined (C11 6.10.8.2).
See Implementation-defined
behavior in The C Preprocessor. char16_t
and
char32_t
literals are always encoded in UTF-16 and UTF-32
respectively.
Next: Integers implementation, Previous: Identifiers implementation, Up: C Implementation [Contents][Index]