Aktualizovat „du6/program.c“

This commit is contained in:
Artem Horbunov 2020-04-08 16:32:21 +00:00
parent 5b6cccb21c
commit 16df69ddaa

View File

@ -97,11 +97,11 @@ int main(){
}
else{
printf("Prijati studenti:%s", string);
for(int i = 0; i <= lines; i++){
for(int i = 0; i < lines + test; i++){
printf("%s\n", newNames[i]);
}
puts("Neprijati studenti:");
for(int i = lines + 1; i < newLines; i++){
for(int i = lines + test; i < newLines; i++){
printf("%s\n", newNames[i]);
}
}