1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-23 14:55:08 +02:00

Merge pull request #528 from weakish/patch-8

c: typo
This commit is contained in:
Nami-Doc
2014-02-14 13:40:47 +01:00

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