diff options
author | Adrian Espinosa <aespinosamoreno@gmail.com> | 2013-09-04 23:32:18 +0200 |
---|---|---|
committer | Adrian Espinosa <aespinosamoreno@gmail.com> | 2013-09-04 23:32:18 +0200 |
commit | 61dcca33407b75cb44ccc042ff213c1be0c2a5c8 (patch) | |
tree | d4d6b173e307228448cadde1708b6d6f8912f683 /c.html.markdown | |
parent | ee8bed8c98df81e63b430ab5e61096f8140f09b5 (diff) |
Fix long line
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index 3acf1a4d..bc7bd37c 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) |