

InterviewSolution
Saved Bookmarks
1. |
Consider the following declaration. const int bp; bp = 100; Is it valid? Explain it? |
Answer» This is not valid. This is an error. A constant variable cannot be modified. That is the error and a constant variable must be initialised. So the correct declaration js as follows, const int bp=100; |
|