Object Oriented Programming in C++

📖 Definition:

Constants are values that cannot be changed during program execution.

 
const float PI = 3.1416;
 

🧪 Quiz:

  1. What is a variable?
  2. Difference between variable and constant?