I am confused on how to do what the title says, I need to add together the contents of the two multi dimensional arrays, I really have no idea how to do this; so at the moment do not have any code; could someone give me an idea on how to do this, thanks.
int father[5][5];
int mother[5][5];
int son[5][5];
for(int i=0;i<5;i++)
{
for(int j=0;j<5;j++)
{
father[i][j]=5;
mother[i][j]=6;
son[i][j]=father[i][j]+mother[i][j]; // son is the sum of
}
}