Functions with pointers to arrays of arraysSorry it's taken me so long to reply here, I've been busy/frustrated. I thought I had been doing exa...
Functions with pointers to arrays of arraysI'm invoking it with: [code]GridWriter(nAreaGrid[10][10], nOccupierType);[/code] before that I dec...
Functions with pointers to arrays of arraysAm I correctly understanding you to be saying that I only need [b]int ( *pnGrid )[10] = nGrid;[/b] i...
Functions with pointers to arrays of arraysIf I write the function the way you have it, is int (*pnGrid)[10] = nGrid; supposed to go in the pa...
Functions with pointers to arrays of arraysI've been trying to use a 10x10 matrix: [code]int nAreaGrid[10][10];[/code] to represent a two...