In C, using pointers to structures can lead to more efficient memory usage because it allows for ________ allocation and deallocation of memory.

  • Dynamic
  • Heap
  • Stack
  • Static
Pointers to structures in C enable dynamic allocation and deallocation of memory, as they can be used to allocate memory on the heap, which is not possible with static memory allocation.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *