-
How to stop your program from eating so much ram?
-
- 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
- All of the mentioned
- 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.