Aktualizovat a3/program.c

This commit is contained in:
Tomáš Vlček 2026-03-30 11:40:07 +00:00
parent 11d91a6c0e
commit 393e047001

View File

@ -43,9 +43,9 @@ int compare(const void* p1, const void* p2)
int main()
{
//helper/pomocne lokalne premeny
int studentsAmount;
int studentsAmount = 0;
struct studentApplication student[STUDENT_SIZE];
int i = 0;
int i = 0; //pomocny index
char processedName[BUFFER_SIZE];
char processedSurname[BUFFER_SIZE];
char line[BUFFER_SIZE];