Hi All,
I need to declare a large 2D array of characters like this:
char PlotID[3100][20];
Code with such a declaration in it will not run in the program I am developing, I presume because I have exceeded the default 32 MB address space for the program as a whole. I believe I need to use VirtualAlloc in some way but can't find an example that I can learn from. Please can someone showe me how to do this with a code example?
With many thanks in advance,
Mike