vault backup: 2024-09-04 15:03:35

This commit is contained in:
zleyyij 2024-09-04 15:03:35 -06:00
parent a0c7ab62c0
commit 7b69c6a210
2 changed files with 10 additions and 4 deletions

View File

@ -1,9 +1,11 @@
1. Preprocessing: The preprocessor obeys commands that begin with #, also known as directives
Commands for the preprocessor are called directives.
Ex
Commands for the preprocessor are called directives. Directives begin with a pound sign, and they do not end with a semicolon.
Example:
```c
//
#include <stdio.h>
```
2. Compiling. A compiler translates then translates the program into machine instructions.
3. Linking: The generated objects are combined to create a complete executable.

View File

@ -0,0 +1,4 @@
# Strings
A string literal is characters enclosed in double quotation marks.
A newline can be inserted using `\n`.