How to Calculate Summation of Maximum Value of Each Row of a Matrice in C Language

https://gyazo.com/95a1b499284caf0556ddf5631f5755bb

 

 

Hi guys , I just tried to code How to Calculate Summation of Maximum Value of Each Row of a Matrice in C Language .
Check the screenshot I’ve attached above .

I hope you like it , and just let me know in comment if you have any better solution .

 

 

#include <stdio.h>

int main ()
{
int array[10][10];
int i, j, m, n, sum = 0,sum2=0 ,max=0 , max2=0;

printf(“Enter the row and column of the matrix\n”);
scanf(“%d %d”, &m, &n);
printf(“Enter the Values of the matrix\n”);
for (i = 0; i < m; i++)
{
for (j = 0; j < n; j++)
{
scanf(“%d”, &array[i][j]);
}
}

for (i=0;i<m;i++)
{
for (j = 0; j < n; j++)
{
if (array[i][j] > max)
{
max=array[i][j];
}
}

max2=max2+max;
max=0;

}
printf(“Summation of Maximum Value of Each Row of the Matrice  \n”);
printf(“\n \n%d”,max2);

}

Knicks, NYC Officials Spar...

A heated political and sports dispute has erupted in...

curl-programming-lang 1.0.2

Introduction to curl-programming-lang 1.0.2 The open-source developer ecosystem continues to...

Why Everyone is Obsessed with the Smart Plug Wifi Outlet

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Knicks, NYC Officials Spar Over MSG Watch Parties

A heated political and sports dispute has erupted in New York City, as Madison Square Garden (MSG) Entertainment and local public officials trade sharp...

Why Everyone is Obsessed with the Under Desk Foot Rest

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Rug Gripper Pads

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

curl-programming-lang 1.0.2

Introduction to curl-programming-lang 1.0.2 The open-source developer ecosystem continues to thrive with the introduction of innovative tools designed to simplify software creation. A fascinating new...

Why Everyone is Obsessed with the Blind Spot Mirrors

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Magnetic Spice Rack

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Webcam Cover Slide

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...

Why Everyone is Obsessed with the Magnetic Cabinet Locks

Are you tired of dealing with everyday frustrations that slow down your routine? We've all been...