how can i make a C program sourceusing struct and how can i reform the source that can calculate the
how can i make a C program sourceusing struct and how can i reform the source that can calculate thecomplex number (a+jb) ? #include int main()
{
int matrix1= {0}, matrix2 = {0};
int size, a, b, sum1 =0, sum2 = 0; printf(“================================n”);
printf(“matrixcalculation programn”);
printf(“================================n”); printf(“input the matrix size(N×N)n”);
scanf(“%d”,&size); printf(“n input the firstmatrix’s componentsn”);
for(a=0; a{
for (b=0;b {
printf(“nu”,a, b);
scanf(“%d”,&matrix1);
}
} printf(“n input the secondmatrix’s components n”);
for(a=0; a{
for (b=0;b {
printf(“nu”,a, b);
scanf(“%d”,&matrix2);
}
} printf(“n result of two matrix’sSumnn”);
for(a=0;a{
for(b=0;b {
printf(“%3d”,matrix1+matrix2); sum1 +=matrix1+matrix2;
}
printf(“%3dnn”, sum1);
} printf(“n result of two matrix’ssubtraction nn”);
for(a=0;a{
for(b=0;b {
printf(“%3d”,matrix1-matrix2); sum2 +=matrix1-matrix2;
}
printf(“%3dnn”, sum2);
} . . .
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

The post how can i make a C program sourceusing struct and how can i reform the source that can calculate the appeared first on Graduate Paper Help.