摘要: 这里只谈二维数组和二级指针 typedef struct { string name; float score; bool gender; } info_t; 二维数组 info_t a_info[3][4]; 二级指针 info_t **p_info; 指针是指针,数组是数组 数组的名字是指针常量 阅读全文
posted @ 2019-11-02 22:08 干霄凌云 阅读(621) 评论(0) 推荐(0) 编辑