Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

What are the keyword of const in c++

Thank u
by

3 Answers

sam5epi0l
Here is a detailed article on const keyword used in C++
https://www.studytonight.com/cpp/const-keyword.php
Pmkkgems
The const keyword specifies that a variable's value is constant and tells the compiler to prevent the programmer from modifying it. In C, constant values default to external linkage, so they can appear only in source files.

Login / Signup to Answer the Question.