mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
add special characters to c
This commit is contained in:
parent
1a8b22cb4f
commit
58cd4b274f
@ -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.
|
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
|
// Import headers with #include
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user