数値を含む動的な char 配列を作成してから、これらを X または 0 に変更しようとしています。
私は、必要な特定の数にグリッドを作成する三目並べゲームを作成しています。配列には、正方形のすべての数字を含める必要があり、プレーヤーに応じてこの数字を X,0 に変更する必要があります。
私は現在持っています。
const int grid_size = size * size; // determines the size of the grid height x width
char **number = new char*[grid_size]; // create the array to the size of the grid
for ( int i = 1; i <= grid_size+1; i++ ) {
number[i] = i;
}
しかし、これでエラーが発生します:- error C2440: '=' : cannot convert from 'int' to 'char *' on line number[i] = i;
数値を含む配列を作成するにはどうすればよいですか - 1,grid_size、これらの数値を X,0 に変更しますか?