From 6a77276898b488640ab26c7c06cc45c1fd0ea974 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Sun, 3 Nov 2024 14:10:04 -0700 Subject: [PATCH] vault backup: 2024-11-03 14:10:04 --- .../software development/ECE1400/Chapter 13 Exercises.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/Chapter 13 Exercises.md b/education/software development/ECE1400/Chapter 13 Exercises.md index 62bec4f..aa0c798 100644 --- a/education/software development/ECE1400/Chapter 13 Exercises.md +++ b/education/software development/ECE1400/Chapter 13 Exercises.md @@ -2,4 +2,7 @@ b. `printf("%c", "\n");` - This is invalid because the double quotes make `\n` a string, but it's being displayed with the `%c`formatting specifier. c. `printf(%s, '\n');` - This is invalid because it's trying to display a `char` using the string formatting specifier. -e. `printf('\n'` \ No newline at end of file +e. `printf('\n');` - `printf`'s first argument should be a string, not a `char`. +h. `putchar("\n");` - `putchar`'s first argument should be a `char`, not a string. +i. `puts('\n');` - `puts`'s first argument should be a string, not a `char`. +j. `puts("\n");` - `puts` will write a newline after writing a string, so this will write two newlines. \ No newline at end of file