Fundamental Programming and Algorithm Lessons: C++ Constants

 C++

Constants

Login

    Constants are variables that can not change. You can realize this then its name :). The computer can only read the variable. Let's see how we use it.

Code

    We type const before the type of variable. After we define a variable.
const typeofvariable nameofvariable = valueofvariable

Example


Comments