2024-09-11 20:35:48 +00:00
|
|
|
Chapter 4 exercises assigned, due monday
|
|
|
|
|
|
|
|
# Operators
|
2024-09-11 20:40:50 +00:00
|
|
|
C emphasizes *expressions* rather than statements.
|
|
|
|
|
|
|
|
Expressions are built from variables, constants, and operators.
|
|
|
|
|
|
|
|
C provides 5 binary arithmetic operator (arithmetic meaning it requires two things to operate on):
|
|
|
|
- Addition
|
|
|
|
- Subtraction
|
|
|
|
- Multiplication
|
|
|
|
- Division
|
|
|
|
- Modulus
|
|
|
|
|
|
|
|
Unary operators only require *one* thing to operate on.
|
|
|
|
- Positive and minus signs
|