From 918232ba9f74718f2f17a9973c2ec70f6e5974a3 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Wed, 11 Sep 2024 14:40:50 -0600 Subject: [PATCH] vault backup: 2024-09-11 14:40:50 --- .../software development/ECE1400/2024-09-11.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/2024-09-11.md b/education/software development/ECE1400/2024-09-11.md index 20cb148..4252a26 100644 --- a/education/software development/ECE1400/2024-09-11.md +++ b/education/software development/ECE1400/2024-09-11.md @@ -1,4 +1,16 @@ Chapter 4 exercises assigned, due monday # Operators -C emphasizes *expressions* rather than stateme \ No newline at end of file +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 \ No newline at end of file