Function to print Matrix in abstract data type

后端 未结 0 890
执念已碎
执念已碎 2021-02-07 09:21

In the matrix. c I have

struct matrix{
    int row;
    int col;
    int *a;
};

Matrix* allocateMemory(int m, int n) {
    Matrix* mat = (Matrix*) malloc(sizeof(         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题