**Variables and Constants in C**
**Variables:** A variable is a named storage location in memory used to store data. - Must be
declared before use - Have a data type and a name
**Example:** ```c int number = 10; ```
**Constants:** Constants are fixed values that do not change during the execution of a program. -
Declared using `const` keyword or `#define`
**Example:** ```c const float PI = 3.14; #define MAX 100 ```