Home » C++ Programming » Operators » Question
  1. How to stop your program from eating so much ram?
    1. Use the hard drive, instead of RAM
    2. Declare it in program memory, instead of on the stack
    3. Find a way to work with the data one at a time
    4. All of the mentioned
    5. None of these
Correct Option: D

*Use the hard drive, instead of RAM.
*Declare it in program memory, instead of on the stack.
*Find a way to work with the data one at a time.



Your comments will be displayed only after manual approval.