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

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top