Question: Help me with This Task please Use the same code Than The following program reads three students' records and creates an array of structures of

Help me with This Task please
Use the same code
Than
The following program reads three students' records and creates an array of structures of the students. Information of the records is organized as follows: \{student id, student name, student date of birth, city of birth\} For example, the following are examples of student records: "17581726", "Mohammad Al-Abdullah", "2002-12-10", "Buraydah" "55382214", "Ibrahim Al-Faris", "2003-05-07", "Riyadh" \#include \#include typedef struct studentStruct \{ char id[10]; char name[50]; char ddmmyyyy[11]; char cityBirth[20]; \}Student; void fillstruct(Student *std, char currentStd[4][50]); int main()\{ char records[3][4][50] = \{ "17581726", "Mohammad Alabdullah", "2002-12-10", "Buraydah" }, { "55382214", "Ibrahim Alfaris", "2003-05-07", "Riyadh", 37 { "62111622", "Ahmad Almansor", "2001-02-22", "Buraydah" } Student students[3]; for(int i=0;i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
