0
How do I save a 2d character array into a file in c++?
Working on Checkers game recently and need to include this feature for saving the game and load the game
3 Answers
+ 2
Just go character by character and write them to a file, almost the same way you would print a 2d array to the screen.
+ 1
Thank you bothđ€