1

我如何从给定的偏移量开始复制内存。例如

int main()
{
   int a1[100], a2[100], i;
   errno_t err;

   // Populate a2 with squares of integers
   for (i = 0; i < 100; i++)
   {
      a2[i] = i*i;
   }

   // Tell memcpy_s to copy 10 ints (40 bytes), giving
   // the size of the a1 array (also 40 bytes).
   err = memcpy_s(a1, sizeof(a1), a2, 10 * sizeof (int) );    
   if (err)
   {
      printf("Error executing memcpy_s.\n");
   }
   else
   {
     for (i = 0; i < 10; i++)
       printf("%d ", a1[i]);
   }
   printf("\n");
}

如何从 a1 的索引 50 开始将内存从 a2 复制到 a1。

提前致谢

4

2 回答 2

7

加 50 到a1. 无需为添加而弄乱 sizeof ;编译器知道怎么做。

于 2012-08-16T21:51:19.733 回答
6

将地址传递给要复制到的索引,作为 的目标memcpy

memcpy(&a1[50], &a2[50], 10 * sizeof a[0]);
于 2012-08-16T21:51:20.167 回答