A simple C program to collect student data like
- student name
- roll number
- number of subjects
- marks in each subjects(out of 100)
and display
- total score
- percentage
- class/division classification
- Flexible to handle performance data of multiple students.
- Roll number validation test.
- Validation for number of students within the valid range,
- Outputs total score,percentage,and classification.
-
Clone the repository
git clone https://github.com/tecnolgd/Student-Report.git
cd Student-Report -
Compile the file using any C compiler:
gcc student_proj1.c -o student_proj1 && student_proj1 -
The application will open for user interaction in the terminal.
Tip
For clear screen in the output,append the code with
* system("cls"); //for WINDOWS OS
* system("clear"); //for MAC/LINUX OS Developed by tecnolgd · Archived learning artifact.
