Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 831 Bytes

File metadata and controls

42 lines (29 loc) · 831 Bytes

🎓 Student Records Management System – C++

A simple C++ console application to manage student records efficiently.

✅ Features

  • Add new students
  • Edit existing student data
  • Delete a student
  • Search for a student by name or ID
  • Display all students sorted by:
    • Student ID
    • Name
    • Grade

📂 Data Storage

  • Student data is stored in: D:/students.txt
  • Data is auto-saved after any change

🧾 Student Information Includes:

  • Student ID
  • Name
  • Major: IT, IS, CS, or CYS
  • Level: 1 to 4
  • Marks for 6 subjects
  • Total marks
  • Average grade

⚙️ Built With

  • Standard C++ Libraries only
  • Console-based interface

📌 Notes

Make sure the file D:/students.txt exists or is created by the program on first run.


Feel free to modify the path or expand the system as needed.