Char (C++)
From Just Solve the File Format Problem
(Difference between revisions)
m |
(released) |
||
Line 16: | Line 16: | ||
| uniform type = | | uniform type = | ||
| conforms to = | | conforms to = | ||
− | | released = | + | | released = 1983 |
| image = C++ char.png | | image = C++ char.png | ||
| caption = Using char | | caption = Using char |
Latest revision as of 07:04, 13 May 2015
C++ char is guaranteed to use exactly 1 byte of memory and it stores a single ASCII character, although storage of a part of the multipart character is also possible under specific conditions.
Character constant must use single quotes and it is considered to be enumerable (thus you can use characters in constructs like switch).