Hi, I'm learning C++ on my own by reading different tutorials on the web. I'm trying to create a simple TicTacToe-game to play in the console window and want to create a funtion that initializes the board (a char 2-dim array) back to being all '_' char's, to use if the player wants to play again. Here is how I try to do this. I know there are probably much better ways of doing this than using an array but I want to understand this error before moving on to the better ways of doing things (first learn the basics...) :-)
oh, I had been struggling with this for hours but totally missed that I was using " instead of '. Though it was something more complex than that.
Thanks a lot!