Hi again, I have the following question,
I have the following problem:
I have an array and a function that receives the array, the problem is that the function is declared like this
void MyFunc(int **my_array)
{
for ( i=0; i<10; i++)
(*my_array)[i] = 0;
}
And when I use the function I receive error:
int int_array[10];
MyFunc(int_array);
I must implement the function with "**" and I must use an array like int int_array[10];, it is possible to send the array to the function?
Any Ideas?
Thanks