What is the impact on memory usage when using pointers to structures?

  • It always increases memory usage
  • It always reduces memory usage
  • It depends on how pointers are used
  • It has no impact on memory usage
The impact on memory usage when using pointers to structures depends on how the pointers are used. When used wisely, pointers can reduce memory usage because they allow for more efficient data manipulation without creating redundant copies. However, improper use can lead to memory leaks or increased memory usage. It's important to manage memory properly when working with pointers to structures.
Add your answer
Loading...

Leave a comment

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