summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--c.html.markdown6
1 files changed, 6 insertions, 0 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 24a96463..c8c3e33b 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -20,6 +20,12 @@ memory management and C will take you as far as you need to go.
Multi-line comments look like this. They work in C89 as well.
*/
+//Special characters:
+'\n' // newline character
+'\t' // tab character
+'\b' // backspace character
+'\0' // null character
+
// Import headers with #include
#include <stdlib.h>
#include <stdio.h>