Variables in C++
What is a Variable?
A variable is a container used to store data in a program.
google.com, pub-8434817042454839, DIRECT, f08c47fec0942fa0
Example
int age = 20;
Rules for Variables
- Must start with letter or underscore
- Cannot use keywords
- Case-sensitive

