) Create a structure called Patient with the following members: Registration_Number, Name, Age, Gender, Contact Number, Address, Physician_name [(3): all 3 names need not be filled initially], Corona_status (had corona in the past or not). Assume that there will not be more than 50 patients in the hospital on a single day. Since people who had corona in the past might have complications, so in order to visit a physician, each patient need to inform whether he/she had corona in the past or not. Populate the array with information of n number of patients (the number n is provided by user). You may write a menu driven program or you may make function calls from main (). [Use of global variable is not recommended for this question]. a) Write a function to display names and registration number of all patients (who had corona in the past) in the n number of patients in the array. b) Write a function to append patient information at the end of the array. [You should have condition to check array bounds] c) Write a function to delete patient information given a name by the user. [Consider all names are unique]. d) Write a function to modify contact number member and physician_name member of a record given a registration number of the patient.
3) Create a structure called Patient with the following members: Registration_Number, Name,
Age, Gender, Contact Number, Address, Physician_name [(3): all 3 names need not be filled
initially], Corona_status (had corona in the past or not). Assume that there will not be more than
50 patients in the hospital on a single day. Since people who had corona in the past might have
complications, so in order to visit a physician, each patient need to inform whether he/she had
corona in the past or not. Populate the array with information of n number of patients (the
number n is provided by user). You may write a menu driven program or you may make
function calls from main (). [Use of global variable is not recommended for this question].
a) Write a function to display names and registration number of all patients (who had corona in
the past) in the n number of patients in the array.
b) Write a function to append patient information at the end of the array. [You should have
condition to check array bounds]
c) Write a function to delete patient information given a name by the user. [Consider all names
are unique].
d) Write a function to modify contact number member and physician_name member of a record
given a registration number of the patient.
Step by step
Solved in 3 steps with 3 images