Primitive Types
What type of things we can put inside a box
Primitive Types
Type
Description
Example Literal
Variable Declaration
int some_integer; // Declaring some_integer as a integer
char c; //Declaring c as a character
float f; //Declaring f as a 32-bit, single-precision floating point valueLast updated