摘要: 结构体 1.声明结构的形式 1.1第一种形式 上面去声明结构 下面去定义变量 #include <stdio.h> struct date {//声明:struct 结构名 {}; int month; int day; int year; }; int main() { struct date t 阅读全文
posted @ 2021-10-18 11:31 DL50 阅读(71) 评论(0) 推荐(0) 编辑