Write output of the following program.
struct Student
{
int age;
float height, weight;
struct dob
{
int date;
char month[4];
int year;
};
}mahesh;
void main( )
{
cout < < " Enter the age:" < < endl;
cin > > mahesh.age;
cout < < "Enter the height:" < < endl;
cin> > mahesh.height;
cout < < "Enter the weight:" < < endl;
cin < < mahesh. weight;
cout < < "The Date of birth:" < < endl;
cout < < " Enter the day:" < < endl;
cin > > mahesh.dob.date;
cout < < "Enter the month:"«endl;
cin > > mahesh.dob.month;
cout < < "Enter the year:" < < endl;
cin > > mahesh.dob.year;
cout < < "The values entered for Age, height and weightare" < < endl;
cout-ccmahesh.age < < "\t" < < mahesh.height < < "\t" < < mahesh.weight < < endl;
cout < < "His date of Birth is:" < < endl < < mahesh.dob.date < < "-" < < mahesh.dob.
month < < "-" < < mahesh.dob.year;
}