摘要: typedef的作用就是起别名 可以用来给数组,指针,结构体定义别名 1.typedef为数组类型定义别名 #include <stdio.h> typedef char str1[20]; int main(void) { str1 arr; printf("%d",int(sizeof(str1 阅读全文
posted @ 2021-05-31 14:25 Wangtn 阅读(357) 评论(0) 推荐(0) 编辑