vault backup: 2024-09-25 14:56:34

This commit is contained in:
zleyyij 2024-09-25 14:56:34 -06:00
parent bbd4af3e97
commit 4ba8c15525

View File

@ -24,6 +24,8 @@ An integer is a way to store a whole number. In C, integers are signed by defaul
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.
## Floats
A float is a decimal value. Slower arithmetic and inexact values are both drawbacks of using floats.