I am using MS VC++ '08, ad have run into a problem that stumps me :
void printtext(char **lotsoftext,int m,int n)
{
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
print(lotsoftext[i][j]);
}
The error is as follows :
cannot convert parameter 1 from 'char' to 'const char *'
How do i correctly refer to lotsoftext ?
Oh, and i don't want to use 2d arrays, so please don't tell me to do that. ;)