diff --git a/cv10/program.c b/cv10/program.c index 82a5a63..f8fd5bf 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -44,7 +44,7 @@ int main() { } } - if (num_accepted < max_students && num_accepted < num_students) { + if (num_accepted < max_students) { printf("Neprijati studenti:"); for (int i = 0; i < max_students; i++) { if (names[i][0] == '\0') { @@ -52,6 +52,6 @@ int main() { } } } - + return 0; } \ No newline at end of file