c_cpp 将int复制到字节缓冲区

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 将int复制到字节缓冲区相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>

//copy int to char buf via memcpy


int main(void) {
  int g = 78;
  unsigned char buf[50];
  memcpy(buf, &g, sizeof(int));
  for(size_t i =0; i< 50;i++) printf("%u\n", buf[i]);
  return 0;
}

以上是关于c_cpp 将int复制到字节缓冲区的主要内容,如果未能解决你的问题,请参考以下文章

linux到windows C++字节数组

无法将固定大小的字节数组从结构复制到 C# 结构中的另一个数组

ByteBuffer 和字节数组

在字节缓冲区中复制结构

将固定字节从输入流存储到字节数组中

Java字节流-从文件输入,输出到文件