1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 06:47:54 +02:00
This commit is contained in:
Jakukyo Friel
2014-02-14 20:34:23 +08:00
parent 5c60b4881d
commit 2a9fb70f6d

View File

@@ -569,7 +569,7 @@ typedef void (*my_fnp_type)(char *);
'\b' // backspace character '\b' // backspace character
'\0' // null character. Usually put at end of strings in C lang. '\0' // null character. Usually put at end of strings in C lang.
// hello\n\0. \0 used by convention to mark end of string. // hello\n\0. \0 used by convention to mark end of string.
'\\' // backspace '\\' // backslash
'\?' // question mark '\?' // question mark
'\'' // single quote '\'' // single quote
'\"' // double quote '\"' // double quote