求助动态创建二维数组
我用malloc或者calloc创建二维数组后,运行程序,为什么,电脑提示 内存不能为“written”
#define getValue(array, width, rows, cols) (*((array) + (rows) * (width) + (cols))) #define setValue(array, width, rows, cols, value) (*((array) + (rows) * (width) + (cols)) = (value))