Looking for an explanation for each Bold line.
#include <stdio.h>
int a[3][4] ={
{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
int b[4][3] ={
{4,8,12},
{3,7,11},
{2,6,10},
{1,5,9}};
int c[3][3];
int i,k,j,m,n,sum;
int main(){
for(i= 0; i < 3; ++i){
for(k = 0; k < 3; ++k){
sum = 0;
for (j = 0; j < 4; ++j){
sum = sum + (a[i][j] * b[j][k]);
}
c[i][k] = sum;
}
}
for(m = 0; m < 3; ++m){
for (n = 0; n < 3; ++n){
printf("%d ",c[m][n]);
}
printf("\n");
}
return 0;
}
7 years ago
5
Answer(1)![blurred-text]()
![]()
Purchase the answer to view it

NOT RATED
- c-arr-exp2.zip
other Questions(10)
- can you do it?
- ASSIGNMENT 07 H05 Anatomy & Physiology II
- see attached
- trigonometry homework my math lab
- Final Paper ACC407
- english composition
- For Njosh Only
- Reserved For Wizard Kim
- Assignment By the end of the week, write a 1-2 page paper discussing your thoughts on how to seek investors for your entrepreneurial venture. Consider questions such as who should invest in your firm and why, along with who the opportunity is for and who
- TMGT/550 Real Time Project Scorecard O'CONOR ONLY