Pps Project
Pps Project
1.ABSTRACT
This program titled ‘Attendance Record’ is designed to tore percentage of student attendance.
It also separates the students according to their attendance percentages. This program is
implemented in C and is used to simplify code. It also shows the overall average percentage of
attendance. With this program it becomes easy to know the attendance percentage of
students.
2.INTRODUCTION
Attendance Record program is beat thing to store the attendance data of students. Keeping
attendance records of students in books now a days is difficult. Because so many students are
engaging in schools and colleges. Having more attendance is more important, because we can
learn more every day. For knowing how to students are regular to school this program can help
you. In this program there is a step-by-step procedure about how much attendance thus
students are having and how students are regular to school. You can also know how many
students have attendance percentages above 90, above 80, above 70, and below 70.
3.SYSTEM ANALYSIS
3.1 EXISTING
Before this program was created people used to feel difficult to store attendance of students.
They also used calculators to calculate the percentages.
3.2 PROPOSED
The user is asked to give the total number of classes roll Numbers and the percentages of the
students. Then he can get a separate students list according to their percentages and the
number of classes attended also shown. By using for loop and if condition we are able to get
the result for attendance record.
4. SYSTEM REQUIREMENTS
#include <stdio.h>
struct student {
int roll_number;
float attendance_percentage;
};
int main() {
int i;
struct student students[10];
float classes;
printf("Enter the number of classes held: ");
scanf("%f", &classes);
for (i = 0; i < 10; i++) {
printf("Enter the roll number of student %d: ", i + 1);
scanf("%d", &students[i].roll_number);
printf("Enter the attendance percentage of student %d: ", i + 1);
scanf("%f", &students[i].attendance_percentage);
}
return 0;
}
8.SYSTEM TESTING
8.1 Test - Input for students list according to their percentage and number of classes attended
Input:
⦁ Total number of classes held.
⦁ Students roll number
⦁ Attendance percentage of students
Expected output:
⦁ List of students according to their attendance percentage
⦁ Number of classes attended by every student
9.OUTPUT SCREENS
10.CONCLUSION
In conclusion, the attendance record project has provided the user with the stored attendance
percentage and separated the students according to their percentages and total number
classes attended by each student.
This is so helpful in schools and colleges. This project can even store the total number of days
present. Overall, the program demonstrates the use of for loop and functions in C
programming.
11.FUTURE ENHANCEMENT
ADDING THE NUMBER OF CLASSES ATTENDED FOR EACH SUBJECT
As this program does not provide many details about the number of classes attended for each
subject and number of classes for each subject separately, if we add this also it will be clearer.
This will also help the students to know about their attendance.
12.REFERENCES
Https://en.wikipedia.org/wiki/Attendance