Hospital Management Application In C++ | Using OOPs C++
Hospital Management Application In C++ We keep improving This Application: - #include < iostream > using namespace std ; class Hospital { public : int pat_id = 12223 ; char pat_name [ 50 ] ; char pat_gen ; int age ; float height ; float weight ; void admit () { cout << " Admit A Patient " << endl ; cout << endl ; cout << " Enter Patient Name " << endl ; cin >> pat_name ; ...