Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.11 KB

File metadata and controls

28 lines (20 loc) · 1.11 KB

🎓 Student Grade Calculator System (C Language)

The Student Grade Calculator System is a console-based application developed in C to automate student result processing. It allows users to input marks for multiple students across different subjects, calculates the total and percentage, assigns a grade, and displays a formatted report.

The system uses file handling to store student records, enabling future retrieval and review. Each student’s name, roll number, subject marks, total, percentage, and grade are saved to a file. Users can choose to enter new records or view previously saved data during runtime.

This project is a great learning resource for beginners to practice:

  • Input/output operations
  • Conditional statements
  • Loops and modular logic
  • File handling in C

✨ Features

  • Accept marks for multiple students
  • Calculate total marks and percentage
  • Assign grades based on score ranges
  • Generate structured result reports
  • Save and retrieve student records using text files

🛠 Technologies Used

  • C Programming
  • Standard File I/O
  • Console Interface