char **b=new *char[5];

the compiler gives an error with that..
how can i define a table that has pointers of char??
I'm thinking the '*' goes on the other side of the char if you are creating space for char pointer

char **b=new char*[5];
Topic archived. No new replies allowed.