From 81e99af77d5f8b7f2c10bf72ad0a9c312ab14a41 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Sat, 7 Sep 2024 13:15:57 -0600 Subject: [PATCH] vault backup: 2024-09-07 13:15:57 --- .../ECE1400/Chapter 2 Exercises.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/Chapter 2 Exercises.md b/education/software development/ECE1400/Chapter 2 Exercises.md index d65fc24..26ff1d9 100644 --- a/education/software development/ECE1400/Chapter 2 Exercises.md +++ b/education/software development/ECE1400/Chapter 2 Exercises.md @@ -6,5 +6,21 @@ Directives: Statements: ```c + printf("Parkinson's Law: \nWork expands so as to "); + printf("fill the time\n"); + printf("available for its completion.\n"); + return 0; +``` -``` \ No newline at end of file +Output: +``` +Parkinson's Law: +Work expands so as to fill the time +available for its completion. + +``` +# \#5 +(A): `100_bottles` is not a legal C identifier because C identifiers cannot start with a number. + +# \#6 +Double underscores are typically used to denote statements reserve \ No newline at end of file