C で 2d int 配列に値を代入しようとしています。
int **worldMap;
各行を配列に割り当てたいので、これをループで行います。
worldMap[0][sprCount] = split(tmp.c_str(), delim);
sprCount++;
問題は、上記の行で int* を int に変換できないというエラーが表示されることです。
2D 配列を作成するコードは次のとおりです。
int** Array2D(int arraySizeX, int arraySizeY)
{
int** theArray;
theArray = (int**) malloc(arraySizeX*sizeof(int*));
for (int i = 0; i < arraySizeX; i++)
theArray[i] = (int*) malloc(arraySizeY*sizeof(int));
return theArray;
}
この関数 (上記) のリターン ポインターを取得し、それを Y 次元に配置します。
int* split(const char* str, const char* delim)
{
char* tok;
int* result;
int count = 0;
tok = strtok((char*)str, delim);
while (tok != NULL)
{
count++;
tok = strtok(NULL, delim);
}
result = (int*)malloc(sizeof(int) * count);
count = 0;
tok = strtok((char*)str, delim);
while (tok != NULL)
{
result[count] = atoi(tok);
count++;
tok = strtok(NULL, delim);
}
return result;
}