diff --git a/education/software development/ECE1400/2024-09-11.md b/education/software development/ECE1400/2024-09-11.md index 2b703cb..45061f8 100644 --- a/education/software development/ECE1400/2024-09-11.md +++ b/education/software development/ECE1400/2024-09-11.md @@ -24,4 +24,7 @@ int v; int e = 5; // Simple assignment v = e; -``` \ No newline at end of file + +// You can chain several operators together +i = j = k = 0; +```