summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-09-13 10:25:58 -0700
committerAdam Bard <github@adambard.com>2013-09-13 10:25:58 -0700
commitb3b4afedae460242d2af8c9f264ca93c23d2577a (patch)
tree456e751bdd137dfcfadd9c806ad90e599f009245 /c.html.markdown
parentdcb1392bb7181545d01c9532012e6c98abde7e5b (diff)
parent2ab5910d38224a2d529bcbf249b32018b5eceabd (diff)
Merge pull request #316 from aesptux/master
[c/en][go/es-es] Update C doc to fix a long line. / [go/es] translation
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 12f862bc..c67f8b21 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -81,7 +81,8 @@ int main() {
// is not evaluated (except VLAs (see below)).
// The value it yields in this case is a compile-time constant.
int a = 1;
- // size_t is an unsiged integer type of at least 2 bytes used to represent the size of an object.
+ // size_t is an unsiged integer type of at least 2 bytes used to represent
+ // the size of an object.
size_t size = sizeof(a++); // a++ is not evaluated
printf("sizeof(a++) = %zu where a = %d\n", size, a);
// prints "sizeof(a++) = 4 where a = 1" (on a 32-bit architecture)