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

51,884 answers

573 users

How to dynamically allocate matrix in C++

1 Answer

0 votes
#include <iostream>

constexpr int ROW = 2;
constexpr int COL = 3;

void initilizeMatrix(int **matrix, int row, int col) {
    srand(time(NULL));
     
    for(auto i = 0; i < row; ++i) {
        for(auto j = 0; j < col; ++j) {
            matrix[i][j] = rand() % 100;
        }
    }
}

void printMatrix(int **matrix, int row, int col) {
    for(auto i = 0; i < row; ++i) {
        for(auto j = 0; j < col; ++j) {
            std::cout << matrix[i][j] << "  ";
        }
        std::cout << "\n";
    }
}

int **allocateMatrix(int row, int col) {
    int **matrix = new int*[row];
    
    for(int i = 0; i < row; i++) {
        matrix[i] = new int[col]{0};
    }
    return matrix;
}

void freeMatrix(int **matrix, int row) {
    for(int i = 0; i < row; i++) {
        delete matrix[i];
    }
    delete [] matrix;
}

int main() {
    int **matrix = allocateMatrix(ROW, COL);

    initilizeMatrix(matrix, ROW, COL);

    printMatrix(matrix, ROW, COL);

    freeMatrix(matrix, ROW);

    return 0;
}



/*
run:

75  99  94  
27  89  88 

*/

 



answered May 7, 2021 by avibootz

Related questions

1 answer 65 views
1 answer 109 views
1 answer 130 views
1 answer 131 views
1 answer 142 views
142 views asked Dec 11, 2020 by avibootz
1 answer 156 views
156 views asked Dec 11, 2020 by avibootz
...