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.
- 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.
Note:For clear screen in the output,append the code with
-
system("cls"); //for WINDOWS OS
-
system("clear"); //for MAC/LINUX OS
- If this repository added value to your learning or dev flow, consider dropping a ⭐ star or hitting fork.
tecnolgd