InterviewSolution
Saved Bookmarks
| 1. |
Program to demonstrate passing constants. |
|
Answer» Answer: In COMPUTER programming, a constant is a VALUE that should not be ALTERED by the PROGRAM during normal execution, i.e., the value is constant. ... This is contrasted with a variable, which is an identifier with a value that can be CHANGED during normal execution, i.e., the value is variable. Explanation: |
|