notes/education/software development/ECE1400/C.md

33 lines
1.5 KiB
Markdown
Raw Normal View History

2024-09-04 21:13:35 +00:00
# Compilation Steps
2024-09-04 20:58:35 +00:00
1. Preprocessing: The preprocessor obeys commands that begin with #, also known as directives
2024-09-04 21:03:35 +00:00
Commands for the preprocessor are called directives. Directives begin with a pound sign, and they do not end with a semicolon.
2024-09-04 20:58:35 +00:00
2024-09-04 21:03:35 +00:00
Example:
```c
#include <stdio.h>
```
2024-09-04 20:58:35 +00:00
2. Compiling. A compiler translates then translates the program into machine instructions.
3. Linking: The generated objects are combined to create a complete executable.
The preprocessor is typically integrated with the compiler.
2024-09-04 21:13:35 +00:00
# Types
## Strings
A string literal is characters enclosed in double quotation marks.
A newline can be inserted using `\n`.
## Integers
An integer is a way to store a whole number. In C, integers are signed by default.
## Floats
A float is a decimal value. Slower arithmetic and inexact values are both drawbacks of using floats.
## Variables
A variable must be declared before it is assigned.
2024-09-04 21:18:36 +00:00
# Formatting specifiers
| Specifier | Function |
| --------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `%d` | Display an integer |
| `%f` | Display a float. Specify the number of places to round to by adding a decimal and a number, eg `%.2f` would round to two decimal places. |