User profile: Commisar Jimp

User info
User name:Commisar Jimp
History
Joined:
Number of posts:9
Latest posts:

Functions with pointers to arrays of arrays
Sorry 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 arrays
I'm invoking it with: [code]GridWriter(nAreaGrid[10][10], nOccupierType);[/code] before that I dec...

Functions with pointers to arrays of arrays
Am I correctly understanding you to be saying that I only need [b]int ( *pnGrid )[10] = nGrid;[/b] i...

Functions with pointers to arrays of arrays
If 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 arrays
I've been trying to use a 10x10 matrix: [code]int nAreaGrid[10][10];[/code] to represent a two...