diff options
author | Ben Eysenbach <eysenbachbe@gmail.com> | 2014-09-03 22:46:50 -0400 |
---|---|---|
committer | Ben Eysenbach <eysenbachbe@gmail.com> | 2014-09-03 22:46:50 -0400 |
commit | c0c77e850c051a28afafcd1e71710c4eebebcccc (patch) | |
tree | 2f42196f3ad12c2e94914bfae26eee3647f154d0 | |
parent | 8df513c39b6503302addefccb0e21032bf39c577 (diff) |
Clarified C Octal Character
This fixes issue #658
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index 8e170300..79b7aec7 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -573,7 +573,7 @@ typedef void (*my_fnp_type)(char *); '\''; // single quote '\"'; // double quote '\xhh'; // hexadecimal number. Example: '\xb' = vertical tab character -'\ooo'; // octal number. Example: '\013' = vertical tab character +'\0oo'; // octal number. Example: '\013' = vertical tab character //print formatting: "%d"; // integer |