I malloc a 2d array. The 2d array is part of a struct and when I try malloc is I get an error that malloc has too many arguments.
malloc(world->representation, sizeof(int *) * mapHeight);
int i;
for (i = 0; i < mapHeight, i++ )
{
malloc(world->representation[i], sizeof(int) * mapWidth);
}
How should this be malloced if its part of a struct?