Rubayet A.
asked 05/18/21computer science
Design a structure that keeps basic patient information. Think about what type of information may be needed about them so that the work of doctors will be easy. Hospital can accommodate maximum 100 COVID-19 patients. Make sure each patient must have a “Patient Status” information based on their condition. Value for this information ranges from 1 – 10. 1 means low risk and 10 means high risk. Any patient having status more than 5 means risky patient. Set the value based on patient’s information. Use the following link to set the required patient information– https://www.who.int/news-room/q-a-detail/coronavirus-disease-covid-19
1 Expert Answer

Patrick B. answered 05/18/21
Math and computer tutor/teacher
typedef struct _TPatient
{
char socialSecurityNumber[PATIENT_STR_SIZE];
char dob[PATIENT_STR_SIZE];
double balance;
long accountNum;
int status;
} * TPatient;
#define MAX_NUM_PATIENTS (100)
struct _TPatient patients[MAX_NUM_PATIENTS];
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Rubayet A.
it has 20 points at homeworks so i dont thinks this small program function has 20 points need more program i guess.05/18/21