What is const - Lecture 19 Challenge

int main()
{
const int a = 4;
}

We are asked to write what we believe what const is:

I assume that this stands for Constant - In which the value cannot be changed as it is “Constantly” the same.

Privacy & Terms