筆記一下,指標的二維陣列如何進行初始化. int **c = malloc(n * sizeof(int *)); for(int i=0;i<n;i++) *(c + i) = malloc(n* sizeof(int));.
確定! 回上一頁