1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-30 19:40:36 +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
'\0' // null character. Usually put at end of strings in C lang.
// hello\n\0. \0 used by convention to mark end of string.
'\\' // backspace
'\\' // backslash
'\?' // question mark
'\'' // single quote
'\"' // double quote