Pass it just like you would any other array
class foo
{
public:
foo(char **ar, int n)
{
}
};
int main()
{
char** mz = new char*[5];
for(int i = 0; i < 5; i++)
mz[i] = new char[5];
foo f2(mz,5);
}
[edit]Oops! Sorry Narue, I didn't see your post.