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);

}

7 Reasons This Coffee...

📢 As an Amazon Associate, I earn from qualifying...

Why Kitchen Organization Tools...

📢 As an Amazon Associate, I earn from qualifying...

Is Dorm Room Hacks...

📢 As an Amazon Associate, I earn from qualifying...

Stop Buying Cheap Alternatives...

📢 As an Amazon Associate, I earn from qualifying...

Everything You Need to...

📢 As an Amazon Associate, I earn from qualifying...

Why Bathroom Organization Hacks...

📢 As an Amazon Associate, I earn from qualifying...

7 Reasons This Coffee Bar Accessories Is Worth Every Single Penny

📢 As an Amazon Associate, I earn from qualifying purchases.There comes a point when you realise that tolerating a frustrating situation is costing you...

Why Kitchen Organization Tools Is Currently Breaking the Internet

📢 As an Amazon Associate, I earn from qualifying purchases.There comes a point when you realise that tolerating a frustrating situation is costing you...

Is Dorm Room Hacks Worth Your Money Here Is Our Full Review

📢 As an Amazon Associate, I earn from qualifying purchases.If you had told me six months ago that a single purchase would change how...

Stop Buying Cheap Alternatives This Camping Essentials Is the Real Deal

📢 As an Amazon Associate, I earn from qualifying purchases.There comes a point when you realise that tolerating a frustrating situation is costing you...

Everything You Need to Know About Outdoor Patio Tech Right Now

📢 As an Amazon Associate, I earn from qualifying purchases.I'll be honest — I was skeptical at first. My daily routine had a gap...

Why Bathroom Organization Hacks Is Currently Breaking the Internet

📢 As an Amazon Associate, I earn from qualifying purchases.I'll be honest — I was skeptical at first. My daily routine had a gap...

Why Electric Cleaning Tools Is Currently Breaking the Internet

📢 As an Amazon Associate, I earn from qualifying purchases.💰 Official Price: Check on Amazon🌟 Why Buy the Electric Cleaning Tools?The Electric Cleaning Tools...

Everything You Need to Know About Portable Cooling Gear Right Now

📢 As an Amazon Associate, I earn from qualifying purchases.💰 Official Price: Check on Amazon🌟 Why Buy the Portable Cooling Gear?The Portable Cooling Gear...

China’s largest memory chipmaker sparks fears of a cash drain before blockbuster IPO

China's semiconductor ambitions are facing a fresh financial dilemma as ChangXin Memory Technologies (CXMT), the nation's premier DRAM chipmaker, prepares for a highly anticipated...