摘要: 结构体: struct Student { char name[32]; int age; int sex; char add[32]; }; 上面只是一种数据类型(同int、char基本类型一样),表示是一个结构体,不占用地址空间,只有在定义结构体变量时才分配空间,即struct Student 阅读全文
posted @ 2023-04-02 23:05 踏浪而来的人 阅读(41) 评论(0) 推荐(0) 编辑
摘要: int main() { char str1[] = {'h','e','l','l','o'}; char str3[] = "hello"; char str4[5] = "hello"; char *str2 = "hello";//'\0' int len1 = sizeof(str1)/s 阅读全文
posted @ 2023-04-02 22:11 踏浪而来的人 阅读(150) 评论(0) 推荐(0) 编辑