你的结构体成员变量定义有问题,char password;只是定义一个字符变量而不是字符串,应改为类似char password[64];形式。同理对应修改name
char password;
char password[64];
name