Hey guys im very new to C++ currently in university studying it but i am no where as good as i am at C#, well ive been trying to read in a txt file that has the format 9x9
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0
i want to then run through the text file and store them all in a 2d array and my best guess is by a for loop and for it to be printed into a output file in the exact same 9x9 format.
It would be great if someone could show me how to do so and point me in the direction of more help. thank you :)