diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 21:16:32 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 21:16:32 -0500 |
commit | ca32d7a5f2edfe9dad2b43fc849b1495c2b5f889 (patch) | |
tree | ccae8b4b51294c7152040a3222673ef4c15973ab | |
parent | 2e8e2b5f3552bd9541a4eac6abba94a767dda8e4 (diff) |
Add clarity to characters in character set.
-rw-r--r-- | c.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c.html.markdown b/c.html.markdown index 0ac603a7..4e7dae5c 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -110,9 +110,9 @@ int main() { unsigned int ux_int; unsigned long long ux_long_long; - // chars inside single quotes '*' are character constants. - '0' //==> 48 on the ASCII table. - 'A' //==> 65 on the ASCII table. + // chars inside single quotes '*' are integers in your character set. + '0' //==> 48 on the ASCII character set. + 'A' //==> 65 on the ASCII character set. // sizeof(T) gives you the size of a variable with type T in bytes // sizeof(obj) yields the size of the expression (variable, literal, etc.). |