摘要:
#include<stdio.h> #include<string.h> struct Student { char name[32]; int age; int height; int weight; }; int main() { struct Student Stus[3]={ {"hhh", 阅读全文
摘要:
数组只能存放一种类型的数据,而结构体内可以存放不同类型的数据。 #include<stdio.h> #include <string.h> struct Student { char name[32]; int age; int height; int weight; }; int main() { 阅读全文