1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 13:57:38 +02:00

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
'\"'; // 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