Skip to main content

Matrix Addition and subtraction program in C language

 Matrix Addition and Subtraction program in C language

Today here you will be able to learn about multiple tasks in Matrix-like addition, subtraction, and multiplication.

@#1.Matrix Addition  

Suppose that we have two matrices of 3X3 orders. This matrix A and B. In this program  




C is the addition of A & B; i and k are used for initialization.

Matrix Addition Program 



Output is: 

Enter The Matrix row & col = 2
3
Enter the First matrix :
Enter matrix[0][0]=2
Enter matrix[0][1]=1
Enter matrix[0][2]=3
Enter matrix[1][0]=6
Enter matrix[1][1]=54
Enter matrix[1][2]=7
First matrix are:
2       1       3
6       54      7
Enter the Second matrix :
Enter matrix[0][0]=8
Enter matrix[0][1]=9
Enter matrix[0][2]=6
Enter matrix[1][0]=4
Enter matrix[1][1]=1
Enter matrix[1][2]=3
Second matrix are:
8       9       6
4       1       3
Matrix sum are:
10      10      9
10      55      10


@#2.Matrix Subtraction

    Two matrices a & b.






Matrix Subtraction program 



Output is: 

Enter matrix[0][1]=4
Enter matrix[1][0]=8
Enter matrix[1][1]=5
Enter matrix[2][0]=9
Enter matrix[2][1]=7
First matrix are:
4       4
8       5
9       7
Enter the Second matrix :
Enter matrix[0][0]=1
Enter matrix[0][1]=0
Enter matrix[1][0]=2
Enter matrix[1][1]=3
Enter matrix[2][0]=03
Enter matrix[2][1]=12
Second matrix are:
1       0
2       3
3       12
Matrix sub are:
3       4
6       2
6       -5







Comments

Popular posts from this blog

One dimensional array declaration in c language basic of array

One D array **Definition of array** Array can be define as a collection of data object which are stored in consecutive memory location with a common variable name.                                                                                                        or  Array is the collection of similar data types or collection of similar entity stored in contiguous memory location . **Initialization of array** Array can be made initialization at the time of declaration itself. The general form of array initialization is as below  1.Data type array name[size] 2. Data type array name[size]={element1,element2,element3,.....} Example: int a[[4]={1,5,8,4} char d[3]={'A','R',u...

Age calculating through date of birth program in C language

DATE OF BIRTH PROGRAM IN C LANGUAGE          Today's date - your date of birth = your current age  There are fifth condition are happening.. @1.IF today date 13.7.2021 and date of birth 15.9.2001 age are (2021-2001).(7-9).(13-15) = 20.-2.-2   but it's wrong real age will be 19year.9month.28days .Then first condition will be (days < 0)&&(month<0) @2.IF today date 13.7.2021 and date of birth 12.9.2001 age are(2021-2001).(7-9).(13-12) = 20.-2.1 but it's wrong real age will be 19 year . 10 month . 1 days .Then  second condition will be (days>0)&&(month<0). @3.IF today date 13.7.2021 and date of birth 13.9.2001 age are(2021-2001).(7-9).(13-13) = 20.-2.0 but it's wrong real age will be 19 year . 10 month . 0days .Then  third condition will be (days==0)&&(month<0). @4.IF today date 13.7.2021 and date of birth 13.9.2001 age are(2021-2001).(7-9).(13-13) = 20.1.0 but it's wrong real age will be 19...

Two dimensional array in C language or matrix program in c language

 Two dimensional arrays: 1.Two dimensional array is known as matrix. 2.An array with two subscripts is termed as two-dimensional array. 3.We know that a one dimensional array can store a row of elements, so a two-dimensional array enables us to store multiple roes of elements. The syntax of declaring a two-dimensional array is : Data-type array name[row][column]; For reading value : for(k=0;k<4;k++) { for(l=0;l<3;l++) { scanf("%d",&a[k][l]); } } For displaying value : for(k=0;k<4;k++) { for(l=0;l<3;l++) { printf("%d",a[k][l]); } printf("\n"); } Simple Matrix Program : #include"stdio.h" int main() { int a[3][3]; int k,l; printf("Enter the array elements: \n"); for(k=0;k<3;k++)  //for reading value// { for(l=0;l<3;l++) { printf("Enter a[%d][%d] :",k,l); scanf("%d",&a[k][l]); } } printf("\n\nMatrix are: \n"); for(k=0;k<3;k++)  //for displaying value...