struct Student
{
char szName[64];
int nYear;
int nMonth;
int nDay;
float fScore[3];
};
int main()
{
Student stu; //Student 是变量类型 就像 int一样 stu 是结构体的变量
stu.szName[0] = ‘J’;
}
转载于:https://my.oschina.net/u/1446208/blog/379828