Recent content by shayanahmad

  1. S

    Solve Sorting Technique Problem with 4 Elementary Sorts

    i have done this so far , now please guide me how to sort this with respect to patient id and age #include <iostream> using namespace std; typedef struct { char name[100]; int patientno; int age; } Input; int main (int argc, char *argv[],int pno) { int i; int NUMBER_OF_PATIENTS; cout<<"Enter...
  2. S

    Solve Sorting Technique Problem with 4 Elementary Sorts

    Hello I'm having problem in solving this question with c/c++ code , please help me ? An eccentric doctor visits his patients in order of decreasing age. Patients entering the waiting list specify not only their names but also their ages. Each time the doctor wants to visit a patient, the...
Back
Top