I initialize an array as follows and get a sizeof( ) 16 .
From what I've read I should get the size of the whole array.
char *myarray[2][2]={"c:\\bigfold\\subfold\\pracnotes.dbf",
"c:\\pracnotes2.dbf",
"c:\\bigfold\\subfold\\pracnotes.fpt",
"c:\\pracnotes2.fpt" };
I did both sizeof(myarray) and sizeof myarry and I even tried sizeof(*myarray)
the last returns 8 If I did sizeof(**myarray) the return value was 4
Seems like I'm getting the pointer sizes.
How can I get the whole array size?
Thanks for your help
Hugh