Clarified C Octal Character

This fixes issue #658
This commit is contained in:
Ben Eysenbach 2014-09-03 22:46:50 -04:00
parent 8df513c39b
commit c0c77e850c

View File

@ -573,7 +573,7 @@ typedef void (*my_fnp_type)(char *);
'\''; // single quote '\''; // single quote
'\"'; // double quote '\"'; // double quote
'\xhh'; // hexadecimal number. Example: '\xb' = vertical tab character '\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: //print formatting:
"%d"; // integer "%d"; // integer