1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

add special characters to c

This commit is contained in:
Levi Bostian
2013-08-31 09:50:13 -05:00
parent 1a8b22cb4f
commit 58cd4b274f

View File

@@ -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>