0
How do you program save?
2 Answers
0
If you meant how a "save" works in programming, like a game save system, it is based on some file where you save the current status of the program. Then, you need to be able to read that file to "load" the saved state, and write to that file to "save" the state, and you need to program how all that works.



