📖 Definition:
Constants are values that cannot be changed during program execution.
Â
const float PI = 3.1416;
Â
🧪 Quiz:
- What is a variable?
- Difference between variable and constant?
Constants are values that cannot be changed during program execution.