Malloc'ing for flexible array

后端 未结 0 1283
故里飘歌
故里飘歌 2021-02-01 12:12

With this struct:

typedef struct MyStack {
    size_t     size;      // current size of stack
    size_t     max;       // max size of stack
    Item*      stack[         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题