From 948cbb3bce2756170fb073d881af36b66de75d2d Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Mon, 30 Sep 2024 14:53:49 -0600 Subject: [PATCH] vault backup: 2024-09-30 14:53:49 --- education/software development/ECE1400/C.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/education/software development/ECE1400/C.md b/education/software development/ECE1400/C.md index 1710738..fde8ce7 100644 --- a/education/software development/ECE1400/C.md +++ b/education/software development/ECE1400/C.md @@ -32,6 +32,9 @@ C99 adds a `long long` int ## Floats A float is a decimal value. Slower arithmetic and inexact values are both drawbacks of using floats. +## Characters +In C, a `char` denotes a single byte of arbitrary encoding. + ## Variables A variable must be declared before it is assigned.