C programming ( it should answer 9 output )
steps please?
write the array created by the following code in the spacebelow?
int numbers [3][3];
int r, c ;
for (r=0; r<=2; r++)
{
for (c=0; c<=2; c++i )
{
if (r==c)
numbers [r][c]=1;
else if (r > c)
numbers [r][c]= r*r+c ;
else
numbers [r][c]=2*(r+3);
}
}
Expert Answer
An answer will be send to you shortly. . . . .