program to find minimum element in each row of the matrix
Answers
Answered by
2
Answer:
Program to find the minimum element in each row of a matrix
/* C Program to find the minimum element in each row of a matrix */
#include<stdio.h>
#include<limits.h>
void display(int result[], int n)
{
int i;
for(i = 0; i < n; i++)
Answered by
0
Explanation:
this is the correct answer
Attachments:
Similar questions