Question: could you expalin this code: int main ( ) { int multiples [ 1 0 ] [ 1 0 ] ; for ( int i

could you expalin this code: int main(){
int multiples[10][10];
for(int i=0; i<10; i++){
for(int j=0; j<10; j++){
multiples[i][j]=(i+1)*(j+1);
}
}
printf("My Multiplication Table:
");
for(int i=0; i<10; i++){
for(int j=0; j<10; j++){
printf("%4d", multiples[i][j]);
}
printf("
");
}
return 0;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!