C. int **array_2d; array_2d = malloc(sizeof(int*) * rows); // This creates an array of pointers to int for(int i = 0; i < rows; ...
確定! 回上一頁