diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 09:50:13 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 09:50:13 -0500 |
commit | 58cd4b274f4ef6dce15bf30eccad4691aaf835ed (patch) | |
tree | 8214c444e2cb58e2deac0a0f36bf1105aee8e15c /c.html.markdown | |
parent | 1a8b22cb4f51b6302e1411ecd94851270fd42eaf (diff) |
add special characters to c
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 6 |
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> |