This commit is contained in:
Bohdan Kapliuk 2024-04-25 23:14:06 +03:00
parent 27f71d4fc9
commit ba796e0c40

View File

@ -17,7 +17,7 @@ int main() {
fgets(name, 50, stdin);
while (fgets(name, 50, stdin) && name[0] != '\n') {
int checker = 0;
for(int i = 0;i < counter && i < max;i++){
for(int i = 0;i < counter;i++){
if(strcmp(prihlasky[i], name) == 0)
checker = 1;
}