码迷,mamicode.com
首页 > 其他好文 > 详细

可变长度结构体

时间:2020-10-07 21:19:07      阅读:30      评论:0      收藏:0      [点我收藏+]

标签:stdin   span   int   sizeof   fine   bsp   style   col   class   

//
// Created by liu on 2020/10/7.
//

#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>struct Node {
    int id;
    int *data;
};

#define case1

int main() {

#ifdef   case1
    int DataSize = 10;
    struct Node node;
    node.data = (int *) malloc(sizeof(int) * DataSize);
    node.data[0] = 1;
    node.data[1] = 5;
    for (int i = 0; i < 10; i++) {
        printf("node.data[%d]:%d\n", i, node.data[i]);
    }
#endif

#ifdef case2
    int DataSize  = 10;
    int data[DataSize];
    struct Node  node;
    node.data = data;
    node.data[0] = 10;
    node.data[1] = 50;
    for (int i = 0; i < DataSize; i++) {
        printf("node.data[%d]:%d\n",i ,node.data[i]);
    }

#endif

#ifdef case3
    int DataSize  = 10;
    struct Node * node =  (struct Node *)malloc(sizeof(struct Node) + DataSize);
    node->data = node + sizeof(struct Node);
    node->data[0] = 100;
    node->data[1] = 500;
    for (int i = 0; i < DataSize; i++) {
        printf("node.data[%d]:%d\n",i ,node->data[i]);
    }
#endif


    return 0;
}

 

可变长度结构体

标签:stdin   span   int   sizeof   fine   bsp   style   col   class   

原文地址:https://www.cnblogs.com/iuyy/p/13776776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!