This commit is contained in:
Andrii Hermaniuk 2022-04-07 15:45:42 +02:00
parent 124c790835
commit 238ec353f2

View File

@ -6,7 +6,7 @@
struct student { struct student {
char name[SIZE]; char name[SIZE];
int votes; int votes;
}attribute((packed)); };
int find_student(struct student* students,int size, const char* name); int find_student(struct student* students,int size, const char* name);