Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 createMatrix() 函数创建了一个名为“map”的矩阵。(我使用了双指针,因为结构必须是矩阵)。如何在主函数中返回和使用返回的矩阵?
您可以通过在主函数中简单地定义一个双指针来返回该值。
int** p=createMatrix(N);
现在你有了createMatrix函数 in的返回值p。
createMatrix
p