what's wrong with my code func(ptr **) when passing double array

J

Juha Nieminen

puzzlecracker said:
f(int** x)
{


}


int main (){

int array[4][5];

f(array);

}

Your f() function expects an array of pointers, but your 'array' does
not contain pointers, it just contains ints. (The fact that your array
of ints can be double-indexed doesn't make it an array of pointers.)

There are no pointers anywhere in 'array', thus it cannot be converted
into an array of pointers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top