Various data types in C

1 · 0x4c2 · Oct. 7, 2019, 1:11 a.m.
C/C++ provides various data types that can be used in your programs.In general, you'd commonly use: int for most variables and "countable" things (for loop counts, variables, events). char for characters and strings. float for general measurable things (seconds, distance, temperature). uint32 for bit manipulations, especially on 32-bit registers....