English, asked by rohiniveldi, 1 month ago

program to find minimum element in each row of the matrix​

Answers

Answered by Anonymous
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 goyaldaksh608
0

Explanation:

this is the correct answer

Attachments:
Similar questions