vault backup: 2024-09-04 15:03:35
This commit is contained in:
parent
a0c7ab62c0
commit
7b69c6a210
@ -1,9 +1,11 @@
|
|||||||
1. Preprocessing: The preprocessor obeys commands that begin with #, also known as directives
|
1. Preprocessing: The preprocessor obeys commands that begin with #, also known as directives
|
||||||
Commands for the preprocessor are called directives.
|
Commands for the preprocessor are called directives. Directives begin with a pound sign, and they do not end with a semicolon.
|
||||||
Ex
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```c
|
||||||
|
//
|
||||||
|
#include <stdio.h>
|
||||||
|
```
|
||||||
2. Compiling. A compiler translates then translates the program into machine instructions.
|
2. Compiling. A compiler translates then translates the program into machine instructions.
|
||||||
3. Linking: The generated objects are combined to create a complete executable.
|
3. Linking: The generated objects are combined to create a complete executable.
|
||||||
|
|
||||||
|
4
education/software development/ECE1400/Types.md
Normal file
4
education/software development/ECE1400/Types.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Strings
|
||||||
|
A string literal is characters enclosed in double quotation marks.
|
||||||
|
|
||||||
|
A newline can be inserted using `\n`.
|
Loading…
Reference in New Issue
Block a user