在vc++运行这个程序错在哪里
#include<iostream.h>void main()
{
struct Student
{
int no;
chart name[10];
chart sex;
struct Day
{
int year;
int month;
int day;
}birthday;
chart class;
}stud;
cout<<"输入一个学生信息"<<endl;
cout<<" 学号:";cin>>stud.no;
cout<<" 姓名:";cin>>stud.name;
cout<<" 性别:";cin>>stud.sex;
cout<<" 出生日期 年:";cin>>stud.birthday.year;
cout<<" 月:";cin>>stud.birthday.month;
cout<<" 日:";cin>>stud.birthday.day;
cout<<" 班号:";cin>>stud.class;
cout<<endl;
cout<<"输出一个学生信息"<<endl;
cout<<" 学号:"<<stud.no<<endl;
cout<<" 姓名:"<<stud.name<<endl;
cout<<" 性别:"<<stud.sex<<endl;
cout<<" 出生日期:"<<stud.birthday.year<<"年";
cout<<stud.birthday.month<<"月";
cout<<stud.birthday.day<<"日"<<endl;
}
用vc++运行