From 78c946967feada1f24f533e1f72f8a4d2ab6465d Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:16:24 -0600 Subject: [PATCH] vault backup: 2024-10-01 21:16:24 --- .../software development/ECE1400/Chapter 7 Exercises.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/Chapter 7 Exercises.md b/education/software development/ECE1400/Chapter 7 Exercises.md index f184693..4e1248b 100644 --- a/education/software development/ECE1400/Chapter 7 Exercises.md +++ b/education/software development/ECE1400/Chapter 7 Exercises.md @@ -33,4 +33,9 @@ B. Days in a year: `short` C. Minutes in a day: `short` D. Seconds in a day: `long` -> 10. Suppose that `i` is a variable of type `int`, `j` is a variable of type `float`, and `k` is a variable of type `unsigned int`. What is the type of the expression `i + (int) j * k`? \ No newline at end of file +> 10. Suppose that `i` is a variable of type `int`, `j` is a variable of type `float`, and `k` is a variable of type `unsigned int`. What is the type of the expression `i + (int) j * k`? + +Answer: +`unsigned int` + +> 15. \ No newline at end of file