/* Write A C Program To Accept A Matrix Of

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View /* Write A C Program To Accept A Matrix Of as PDF for free.

More details

  • Words: 198
  • Pages: 2
/* Write a C program to accept a matrix of order M x N and find the sum * * of each row and each column of a matrix */ #include <stdio.h> void main () { static int m1[10][10]; int i,j,m,n,sum=0; printf ("Enter the order of the matrix\n"); scanf ("%d %d", &m,&n); printf ("Enter the co-efficients of the matrix\n"); for (i=0;i<m;++i) { for (j=0;j
----------------------------------------------------*/

Related Documents