Static double linked list in C

前端 未结 0 1740
Happy的楠姐
Happy的楠姐 2020-11-30 04:16

Consider two structures that point to each other:

struct obj2; // Forward declaration
struct obj1 {
    struct obj2 *ptr;
};
struct obj2 {
    struct obj1 * c         


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