Is it possible in C++ to have a function that returns a 2-D or indeed an X-D array from a function, with a specified type such as..
char [][] myFunction()
{
char a[][];
//Do something with array here
return a;
}
Also, if this can be done, can the array returned by that of one has not been specified a size in its declaration.