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.