Skip to content

this project, we can learn a lot about input/output streams and the file management system of C++. Our program collects student details like name, roll number, marks in each subject, and calculates their grade. This is a simple console app. Note that we focus only on the correct inputs in this project, and you can enhance it to handle wrong inputs.

Notifications You must be signed in to change notification settings

Niraj6927/Student_Report_Management_System_project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Student Report Management System Project

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.

Keywords— Student Report management system, C++, OOPs

INTRODUCTION

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.

  1. Create student report card record
  2. Read all students report card record
  3. Read specific student’s report card record
  4. Display all students’ grade report
  5. Modify student’s report card record
  6. Delete student record

HEADER FILES USED

  1. #include :- It is used as a stream of Input and Output using cin and cout.
  2. #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.
  3. #include :- It is used to access set() and setprecision() function to limit the decimal places in variables.
  4. #include <stdlib.h> :- The stdlib.h header defines four variable types, several macros, and various functions for performing general functions.

About

this project, we can learn a lot about input/output streams and the file management system of C++. Our program collects student details like name, roll number, marks in each subject, and calculates their grade. This is a simple console app. Note that we focus only on the correct inputs in this project, and you can enhance it to handle wrong inputs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages