To find the frequency of odd numbers and even numbers in matrix


Levels of difficulty: / perform operation:

C program to find the frequency of odd numbers and even numbers in the input of a matrix. Program will check the element type, if Matrix element is even, it ads 1 to even counter otherwise ad 1 to odd counter.

Program

#include <stdio.h>
void main () {
static int ma[10][10];
int i,j,m,n,even=0,odd=0;
printf ("Enter the order ofthe matrix \n");
scanf ("%d %d",&m,&n);
printf ("Enter the coefficients if matrix \n");
for (i=0;i<m;++i) {
for (j=0;j<n;++j) {
scanf ("%d", &ma[i][j]);
if ((ma[i][j]%2) == 0) {
++even;
} else
++odd;
}
}
printf ("The given matrix is\n");
for (i=0;i<m;++i) {
for (j=0;j<n;++j) {
printf (" %d",ma[i][j]);
}
printf ("\n");
}
printf ("\nThe frequency of occurance of odd number = %d\n",odd);
printf ("The frequency of occurance of even number = %d\n",even);
}
/* End of main() */