notes/education/software development/ECE1400/Chapter 13 Exercises.md

5 lines
439 B
Markdown
Raw Normal View History

2024-11-03 20:03:05 +00:00
> 1. The following function calls supposedly write a single new-line character, but some are incorrect. Identify which calls don't work and explain why.
2024-11-03 21:05:04 +00:00
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'`