如果我按如下方式初始化列表,如何访问该结构中的元素:
group **list = (group **) malloc(sizeof(group));
typedef struct
{
// ID of the group, 'A' to 'D'
char id;
// a list of members in the group
char **members;
} group;
我尝试使用(*list)->id = 'A'
它并编译但在运行程序时出现分段错误错误。