Array same as Pointer

I am making a 2D grid console class, and came across a problem, is:
 
int array[][];


the same as:
 
int **array;


if being declared in a header file. Thank You for all answers.
When passing to a function, the former is converted to the latter. You might want to be a bit more specific.
No. The first doesn't even compile.
Topic archived. No new replies allowed.