Variables
What is a Variable?
/* Example variables: */
int = Stores integers, whole numbers: 1, 5, 10, 1337
float = Stores decimal values: 10.1, 13.9, 1.3498
char = Stores string or text.
Example values:
int age = 15;
float grade = 13.37;
char name = "William"; /* #Text or Strings have to be in quotes. */
Notes:
Format Specifiers
Note:
Last updated