2d array call in a function

A

axcytz

Hi all,

I have a 2d array that I declared as:

int array[3][3] ={{1,2,3},{1,3,5},{3,2,5}};
int InitialArray[3] = {..};
int Result;

I also use this in a function:

int Calculate(int myarray[], int array[][3], int result)
{
for(int i=0; i<3 ;i++)
{
for(int j=0; j<i+1 ;j++)
result += array[myarray][myarray[j]];
}
}

In main, I call it as

Calculate(InitialArray, array, Result);

I get some errors because of the 2d array in function. How should i fix this?

expected primary-expression before â]â token
array bound is not an integer constant


Thanks in advance!
 
B

Barry Schwarz

Hi all,

I have a 2d array that I declared as:

int array[3][3] ={{1,2,3},{1,3,5},{3,2,5}};
int InitialArray[3] = {..};
int Result;

I also use this in a function:

int Calculate(int myarray[], int array[][3], int result)
{
for(int i=0; i<3 ;i++)
{
for(int j=0; j<i+1 ;j++)
result += array[myarray][myarray[j]];
}
}

In main, I call it as

Calculate(InitialArray, array, Result);

I get some errors because of the 2d array in function. How should i fix this?

expected primary-expression before â]â token
array bound is not an integer constant


It would help a whole bunch if you posted your actual code (use cut
and paste, do not retype) and the complete text of the error message.
You might also mention which compiler you are using.

What happens if you put the actual first dimension in the second
parameter?
What happens if you change the second parameter to the equivalent
int(*array)[3]?
 

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
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top