InterviewSolution
Saved Bookmarks
| 1. |
What is dynamic initialization? Give its advantage. |
|
Answer» It is a method of initialization C++ adopts. In this method, C++ declares a variable during the run time of the program. The advantage is variables can be initialized anywhere in the program before they are used. |
|