Abstract :- The present project is aimed to be create a C++ program that can store, retrieve, display, insert, delete and modify a student's marks in their subjects. The program is completely menu driven without any graphical interface. The data is stored in a binary file for future reference.
The project Student Report Management System is aimed to efficiently store and retrieve student reports. This project in C++ is a simple console application built without any graphical Interface. In this project, users can perform typical report card related functions like adding a new student record and displaying, modifying, editing and deleting it. File handling has been effectively used to perform all these. This project will teach you how to use file handling in C++, add, read, display, search, modify and delete record from file.
- Create student report card record
- Read all students report card record
- Read specific student’s report card record
- Display all students’ grade report
- Modify student’s report card record
- Delete student record
- #include :- It is used as a stream of Input and Output using cin and cout.
- #include<fstream.h> :- It is used to control the data to read from a file as an input and data to write into the file as an output.
- #include :- It is used to access set() and setprecision() function to limit the decimal places in variables.
- #include <stdlib.h> :- The stdlib.h header defines four variable types, several macros, and various functions for performing general functions.