Raising a Matrix to the nth power in C

后端 未结 0 1312
挽巷
挽巷 2020-11-22 03:25
void matRaise( int n, int m, int ***a){
    int **x;
    x = (int **) calloc(n, sizeof(int *) * (n));
    for (int i = 0; i < n; i++)
        *(x + i) = (int *)ca         


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