I've recently made an array for a tictactoe program, but then when I compiled it, it gave me this strange output, like this here:
003AFAC0
and this here:
0019Fe90
here's the code:
I couldn't find the solution to this problem, although I think that it's probably going to be something very stupid that I overlooked :/
Remember that an array is a pointer to the first element of that array. You're printing the reference of the first array element. To print an array you must use a for loop or something like that.