hospital-management-system
hospital-management-system copied to clipboard
A hospital management system, made using object oriented programming and file handling (in C++), that keeps records of doctors, their appointments, patients, staff and more.
Results
1
hospital-management-system issues
Sort by
recently updated
recently updated
newest added
#include #include #include using namespace std; class Doctor { private: string name; int age; string phoneNumber; bool hasAppointment; bool hasWorked; public: Doctor(string name, int age, string phoneNumber) : name(name), age(age),...