#include <iostream>using namespace std;#include "stdio.h"#include "stdlib.h"#include "string.h"#define MAXSIZE 20//实例顺序表最大长度 后序可以更改typedef struct chsystem{ char name;//姓名 char number[20];//手机 char other;//小组}phonecontent;//通讯录类型typedef struct{ phonecontent user[MAXSIZE+1];//user[0]闲置 int length;}PhoneList;//通讯录结构体void read(PhoneList L){ L.user[0].name = 'a'; L.user[1].name = 'b'; printf("%c\n",L.user[0].name);}void ASD(PhoneList L){ L.user[0].name=L.user[1].name; printf("%c\n",L.user[0].name);}int main(){ PhoneList L; read(L); ASD(L); return 0;}代码运行后就输出一个数值跪求大神解答