C program to find the sum of 2 matrices ( Program 24)
/* Made by Anmol main Student :B.tech CSE Punjabi university Patiala Program No. : 24 */ #include <stdio.h> #define m 5 #define n 5 int main () { int i , j , k ; int arows , acolums , brows , bcolums , sum = 0 ; int a [ m ][ n ]; int b [ m ][ n ]; int p [ m ][ n ]; //getting input of two matrices from the user printf ( "\nEnter the number of rows : " ); scanf ( "%d" , & arows ); printf ( "Enter the number of colums : " ); scanf ( "%d" , & acol...