Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to sum 2D array (matrix) rows in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

void sum_matrix_rows(int matrix[][5], int rows_sum[3], int rows, int cols)
{
	for (int i = 0; i < rows; i++) {
		for (int j = 0; j < cols; j++)
			rows_sum[i] += matrix[i][j];
	}
}

int main()
{
	int matrix[3][5] = { { 1, 1, 1, 1, 1 },
	                     { 2, 2, 2, 2, 2 },
	                     { 3, 3, 3, 3, 3 } };

	int rows_sum[3] = { 0 };
	int rows = sizeof matrix / sizeof matrix[0];
	int cols = sizeof matrix[0] / sizeof(int);

	sum_matrix_rows(matrix, rows_sum, rows, cols);

	for (int i = 0; i < 3; i++)
		cout << rows_sum[i] << endl;

	return 0;
}


/*
run:

5
10
15

*/



 



answered Apr 12, 2018 by avibootz
edited Apr 13, 2018 by avibootz

Related questions

1 answer 139 views
139 views asked Apr 13, 2018 by avibootz
2 answers 206 views
1 answer 166 views
166 views asked Apr 17, 2018 by avibootz
1 answer 203 views
203 views asked Apr 16, 2018 by avibootz
1 answer 138 views
1 answer 193 views
193 views asked Apr 16, 2018 by avibootz
1 answer 123 views
123 views asked Apr 13, 2018 by avibootz
...