本文分享了利用二维动态数组指针做矩阵运算的实现代码。 1. 头文件 // juzhen 2.cpp : Defines the entry point for the console application. // #include stdafx.h #include stdlib.h #include windows.h #define OK 0 #define NG -1 typedef struct mat { int nRow; /* 行数 */ int nCol; /* 列数 */ int* pData; /*