你真是坏心眼,来我们C++捣乱,呵呵。你希望的正是我不希望的,

咦..身为架茬子.这种时候怎么能少了俺了呢
羊兄..你又来这套了
看来这次你比较理直气壮啊
比上次强多了
main()
{
char **myArray; // eek, char ** because myArray is a pointer to a
// pointer to a character (an array of arrays...)
myArray = new char * [8]; // allocate the rows
for (int row = 0; row < 8; row++) // now allocate the columns
myArray[i] = new char [5];
}