struct date{
int month;
int day;
int year;
}
struct info
{
int idno;
char lastname[30];
char firstname[30];
char middlename[30];
struct date birthdate;
char gender; /*This can be inputted as M or F*/
char course[5];
char address[50];
float height_in_meters;
float weight_in_kgs;
}
struct info student[500];
Utilizing the provided structure above, generate the program statements.