摘要:
结构体: struct Student { char name[32]; int age; int sex; char add[32]; }; 上面只是一种数据类型(同int、char基本类型一样),表示是一个结构体,不占用地址空间,只有在定义结构体变量时才分配空间,即struct Student 阅读全文
摘要:
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 阅读全文