Saved Bookmarks
| 1. |
Run Time Memory Allocation Is Known As ? |
|
Answer» Allocating MEMORY at runtime is called a DYNAMICALLY allocating memory. In this, you dynamically allocate memory by using the NEW operator when declaring the ARRAY. for example : int grades[] = new int[10]; Allocating memory at runtime is called a dynamically allocating memory. In this, you dynamically allocate memory by using the new operator when declaring the array. for example : int grades[] = new int[10]; |
|