Why is it printing the addresses and not the values?

后端 未结 0 575
故里飘歌
故里飘歌 2020-12-17 03:38
#include 
#include 

struct node{
  int value;
  struct node *next;
  struct node *previous;
};

struct list{
  struct node *head;
  s         


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