From 6235b9c390ee389f6b89c3272a8da00f92a8f416 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:15:49 -0600 Subject: [PATCH] vault backup: 2024-09-11 15:15:49 --- education/software development/ECE1400/2024-09-11.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/2024-09-11.md b/education/software development/ECE1400/2024-09-11.md index 28ac636..2b703cb 100644 --- a/education/software development/ECE1400/2024-09-11.md +++ b/education/software development/ECE1400/2024-09-11.md @@ -15,4 +15,13 @@ C provides 5 binary arithmetic operator (arithmetic meaning it requires two thin Unary operators only require *one* thing to operate on. - Positive and minus signs -Positive and negative signs have a higher precedence then binary arithmetic operations, and binary arithmetic operations follow the normal order of operations. \ No newline at end of file +Positive and negative signs have a higher precedence then binary arithmetic operations, and binary arithmetic operations follow the normal order of operations. + +## Assignment Operators +- Simple assignment: `=` stores a value into a variable after evaluating an expression +```c +int v; +int e = 5; +// Simple assignment +v = e; +``` \ No newline at end of file