From ad57aa169ee069103c3a031993befb35d93859ba Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:01:35 -0600 Subject: [PATCH] vault backup: 2024-09-25 15:01:35 --- education/software development/ECE1400/C.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/education/software development/ECE1400/C.md b/education/software development/ECE1400/C.md index 36a8b62..f9def9d 100644 --- a/education/software development/ECE1400/C.md +++ b/education/software development/ECE1400/C.md @@ -26,6 +26,8 @@ Values of an integer type are whole numbers. Integers are divided into two categories, signed, and unsigned. If the sign bit is zero, it's a positive value, and if it's 1, the value is negative. + +They cal be declared using `[short|long] [signed|unsigned] int`, resulting in 6 possible combinations ## Floats A float is a decimal value. Slower arithmetic and inexact values are both drawbacks of using floats.