i'm making a reversi game board with and and int array of NxN,
i initialized the array as 0 but i'm wondering is there a way to replace the 0
with a character such as "W"? i tried that but it gave me an error of course.
You could have the array be type char since the numbers 0-9 can be represented as chars as well as letters and symbols. To decided what it displays just say char[N][N] = 'A'. Replace the A with whatever you want to.