c_cpp 在C中使用静态缓冲区进行数字加载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在C中使用静态缓冲区进行数字加载相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

#define NUM_SIZE sizeof(double) + sizeof(unsigned char)

// example for loading marked binary data into a buffer.

typedef enum
{
   WindType_null,
   WindType_number
} WindType;

static unsigned char NUM_LOAD[NUM_SIZE] = {WindType_number};

void write_num(double num)
{
  *(double*)(NUM_LOAD + sizeof(unsigned char)) = num;
}


int main(void) {
  // Writes num to loader to make it [mark][num data] -> To write to larger buffer.
  write_num(30);
  unsigned char* reader = NUM_LOAD;
  for(int i = 0; i< sizeof(NUM_LOAD);i++) printf("%u\n", NUM_LOAD[i]);
  return 0;
}

以上是关于c_cpp 在C中使用静态缓冲区进行数字加载的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp c中简单的扩展char缓冲区

c_cpp 找到大量数字中最大的k数。您无法对数组进行排序。

c_cpp 使用VAO(顶点数组对象)和顶点缓冲区定义和绘制矩形。

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

c_cpp 环形缓冲区

c_cpp 字符串缓冲区