Skip to main content

Posts

C++ STUDENT REPORT CARD SYSTEM

Description: This C++ mini project on STUDENT REPORT CARD has student class with data members like roll no, name, marks and grade. Member functions in this class are used for accept / display details of students and a function to calculate grade based on marks obtained by student. Student Records are stored in binary file. //*************************************************************** // HEADER FILE USED IN PROJECT //**************************************************************** #include<fstream.h> #include<iomanip.h> #include<stdio.h> #include<conio.h> //*************************************************************** // CLASS USED IN PROJECT //**************************************************************** class student { int rollno; char name[50]; int p_marks, c_marks, m_marks, e_marks, cs_marks; float per; char grade; void calculate(); //function to calculate grade public : void getdata(); ...

C++ LIBRARY MANAGEMENT SYSTEM PROJECT

  Description: This C++ menu driven programs on LIBRARY MANAGEMENT SYSTEM has book and student class with data members like book no, bookname, authorname. Books records is stored in a binary file . A student can issue book and deposit it within 15 days. Student is allowed to issue only one book. Student Records are stored in binary file. Administrator can add, modify or delete record. //*************************************************************** // HEADER FILE USED IN PROJECT //**************************************************************** #include<fstream.h> #include<conio.h> #include<stdio.h> #include<process.h> #include< string .h> #include<iomanip.h> //*************************************************************** // CLASS USED IN PROJECT //**************************************************************** class book { char bno[6]; char bname[50]; char aname[20]; public : void crea...