Clarify character literals

This commit is contained in:
Alva Connor Waters 2015-10-02 15:19:38 +00:00
parent f23d470961
commit ae86e4ebab

View File

@ -53,11 +53,11 @@ int main(int argc, char** argv)
// However, C++ varies in some of the following ways: // However, C++ varies in some of the following ways:
// In C++, character literals are one byte. // In C++, character literals are chars
sizeof('c') == 1 sizeof('c') == sizeof(char) == 1
// In C, character literals are the same size as ints. // In C, character literals are ints
sizeof('c') == sizeof(10) sizeof('c') == sizeof(int)
// C++ has strict prototyping // C++ has strict prototyping