C++: Elementary Programming

char single character 1 byte int whole number from -232 to 231 – 1 4 bytes double decimal number from ±1.8E308 to ±4.9E-324 8 bytes bool Boolean (true or false) 1 byte Advanced Types: string one or more characters (text) vector a resizable array (fast access, slow resize) list a list of values (slow access, fast resize) ................
................