Page 480 - C++
P. 480

int Return_Chclass(int CL, char S ,int A, int  R)
                   {
                          if(Class = = CL && Section = = S && Admno= = A && Rollno = = R)
                          {
                                 if (Paid = = ‘Y’)
                                         return 1;
                                 else
                                         return 0;
                          }
                          else
                                 return -1;


            };




                        MAIN MENU

               1.      Student Management
                       a.  Add a Student
                       b.  Delete a Student
                       c.  Modify a Student
                       d.  Exit
               2.      Fee Management
                       a.  Fee Entry in Quarter
                       b.  Delete Fee Details
                       c.  Modify Fee Details
                       d.  Update Fee Details
                       e.  Exit
               3.      Query
                       a.  Student
                       b.  Fee
               4.      Fee Slip Generation
                       a.  All the Students
                       b.  Selected Student
                       c.  Exit
               5.      Report
                       a.  Defaulter’s List
                       b.  Monthly List
               6.      Exit
   475   476   477   478   479   480   481   482   483   484   485