EngineersForge
Technical User
I cannot set a pointer to a multi-dementional array such as:
const string sTable[ROWS][COLUMNS];
trying:
string sp* = &sTable;
does not work.
trying:
string &sr = sTable;
does not work.
I have attempted different loops using the new operator to no success also.
Is their not a way to create a inderect access to a multi-dementional array of string objects???
If so, please tell me. It will make many things much simpler for me.
Many tanx.
const string sTable[ROWS][COLUMNS];
trying:
string sp* = &sTable;
does not work.
trying:
string &sr = sTable;
does not work.
I have attempted different loops using the new operator to no success also.
Is their not a way to create a inderect access to a multi-dementional array of string objects???
If so, please tell me. It will make many things much simpler for me.
Many tanx.