summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown6
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.).