how to copy linkedlist of strings in c

前端 未结 0 1785
半阙折子戏
半阙折子戏 2020-12-08 03:22
struct set{
    char *item;/*first word of non-empty set*/
    struct set *tail;/*remaining words in the set*/
};

struct set* create_set(char* str){
    char* s = c         


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