save game& pause

hi i have a project at school its about making checker game so i am having Trouble with save function and pause if someone can Explains me how can i write them
pc: i am beginner
Last edited on
To save data to to file you can use std::ofstream and to load data from file you can use std::ifstream.

How to do pause depends on how your game is working. If you are just reading input from std::cin you don't really need a pause function because it will automatically "pause" while waiting for user input.
Topic archived. No new replies allowed.