summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2013-08-31 09:50:13 -0500
committerLevi Bostian <levi.bostian@gmail.com>2013-08-31 09:50:13 -0500
commit58cd4b274f4ef6dce15bf30eccad4691aaf835ed (patch)
tree8214c444e2cb58e2deac0a0f36bf1105aee8e15c
parent1a8b22cb4f51b6302e1411ecd94851270fd42eaf (diff)
add special characters to c
-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>