二维数组复制到另一个二维数组

int Pij[256][256];    原数组

int tempPij[256][256];    目标数组


memcpy(tempPij,Pij,sizeof(int)*256*256);

你可能感兴趣的:(c++编程)