本文介绍了如何在C中存储二维数组的一部分?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在C中记忆二维数组:
How to memcpy the two dimensional array in C:
我有一个二维数组:
int a[100][100];
int c[10][10];
我想使用memcpy
将数组c中的所有值复制到数组a,如何使用memcpy做到这一点?
I want to use memcpy
to copy the all the values in array c to array a, how to do this using memcpy?
int i;
for(i = 0; i<10; i++)
{
memcpy(&a[i][10], c, sizeof(c));
}
这正确吗?
推荐答案
应该有效:
int i;
for(i = 0; i<10; i++)
{
memcpy(&a[i], &c[i], sizeof(c[0]));
}
这篇关于如何在C中存储二维数组的一部分?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!