Saved Bookmarks
| 1. |
Define:1. Pointer2. Static memory allocation3. Dynamic memory allocation |
|
Answer» 1. A pointer is a variable that holds the memory address, usually the location of another variable. 2. The fixed size of memory allocation and cannot be altered during runtime is called static memory allocation. 3. Allocation of memory at the time of execution (run time) is known as dynamic memory allocation. |
|