This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:c4eng:fall2024:projects:dtr0 [2024/09/12 14:02] – [BINARY NUMBERS] dnayo | notes:c4eng:fall2024:projects:dtr0 [2024/09/15 06:27] (current) – [HEXADECIMAL NUMBERS] dprado | ||
---|---|---|---|
Line 4: | Line 4: | ||
Binary is a coding system that uses a combination of 0s and 1s in order to both simulate and create mathematical algorithms. The system uses 4 bits of any combination of 0 and 1 to simulate one of 256 values, ranging from 0 to 255. Each 0 correlates to a lack of value, while each one correlates to unit holding a value of a power of 2. For example, a 1 in the unit's place (i.e. 0001) is equal to a value of 2 to the power of, meaning 1. A 1 in the ten's place (i.e. 0010) is equal to 2 to the power of 1, meaning 2. A 1 in the hundred' | Binary is a coding system that uses a combination of 0s and 1s in order to both simulate and create mathematical algorithms. The system uses 4 bits of any combination of 0 and 1 to simulate one of 256 values, ranging from 0 to 255. Each 0 correlates to a lack of value, while each one correlates to unit holding a value of a power of 2. For example, a 1 in the unit's place (i.e. 0001) is equal to a value of 2 to the power of, meaning 1. A 1 in the ten's place (i.e. 0010) is equal to 2 to the power of 1, meaning 2. A 1 in the hundred' | ||
====HEXADECIMAL NUMBERS==== | ====HEXADECIMAL NUMBERS==== | ||
+ | Hexadecimal, | ||
=====DATA TYPES IN C===== | =====DATA TYPES IN C===== | ||
========COMPILE CODE========= | ========COMPILE CODE========= | ||
+ | When in lab 46, you can compile by simply using " | ||
====PRINTF FORMAT SPECIFIERS==== | ====PRINTF FORMAT SPECIFIERS==== |