How do I return a member of a struct from an array of structs in C?

后端 未结 0 1341
旧巷少年郎
旧巷少年郎 2020-12-02 08:40

Suppose I have

typedef struct People {
 char *name;
 char **characteristics;
 char *sentence;
} People;

typedef struct List {
  People **list;
  int total_pp         


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