题解列表

筛选

矩阵转置 (C语言代码)

摘要:#include <stdio.h>#include <stdlib.h>int main(){    int N,i,j;           //N*N的矩阵    int *p = NULL; ……