摘要: 搞定 C 语言 struct 结构体 一、简单(仅结构) 1、定义 struct node{ int len; char pk; } x = {len:1,pk:'s'}; 2、读取 printf("%c%d",x.pk,x.len); 二、进阶(结构+指针) 1、定义 struct node{ i 阅读全文
posted @ 2021-04-19 19:35 季文康 阅读(450) 评论(0) 推荐(0) 编辑