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,939 questions

51,876 answers

573 users

How to check if two given matrices are identical in C++

1 Answer

0 votes
#include <iostream>

#define COLS1 3

bool MatricesIdentical(int matrix1[][COLS1], int matrix2[][COLS1], int rows1, int cols1) {
    for (int i = 0; i < rows1; i++) {
        for (int j = 0; j < cols1; j++) {
            if (matrix1[i][j] != matrix2[i][j]) {
                return false;
            }
        }
    }
    return true;
}

int main()
{
    int matrix1[][COLS1] = { {4, 2, 4},
                             {8, 3, 1} };
    int matrix2[][COLS1] = { {4, 2, 4},
                             {8, 3, 1} };


    int rows1 = sizeof(matrix1) / sizeof(matrix1[0]);
    int cols1 = sizeof(matrix1[0]) / sizeof(matrix1[0][0]);

    if (MatricesIdentical(matrix1, matrix2, rows1, cols1)) {
        std::cout << "yes";
    } else {
        std::cout << "no";
    }
}




/*
run:

yes

*/

 



answered Oct 2, 2022 by avibootz

Related questions

1 answer 81 views
1 answer 99 views
1 answer 128 views
3 answers 224 views
2 answers 145 views
2 answers 119 views
119 views asked Jul 29, 2023 by avibootz
...