c_cpp 在静态内存地址上使用memcpy

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在静态内存地址上使用memcpy相关的知识,希望对你有一定的参考价值。

#include "stdio.h"
#include "stdlib.h"
#include "string.h"

int main(void) {
  void* buf = malloc(40);
  int f = 7;
  memcpy(buf, &f, sizeof(int));
  int* foo = buf;
  printf(" first is : %d\n", foo[0]);
  return 0;
}

以上是关于c_cpp 在静态内存地址上使用memcpy的主要内容,如果未能解决你的问题,请参考以下文章

memcpy() -- 拷贝内存函数

memcpy memmove区别和实现(转)

memcpy memmove 函数

memcpy在C语言中的含义,与strcpy区别

memcpy详解

c_cpp 的memcpy