InterviewSolution
Saved Bookmarks
| 1. |
What is named constant? Give the declaration. |
|
Answer» The named constant is a memory location, whose value cannot be changed during the execution of a program. Declaration syntax: const datatype variable = initial value; |
|