This commit is contained in:
Maryna Kravtsova 2020-11-02 13:17:07 +01:00
parent dabe009eae
commit 9b936bc616

View File

@ -24,7 +24,7 @@ struct car* add_car(struct car* first,const char* target) {
}
void print_train(struct car* first) {
for(struct car* this == first; this != NULL; this = this->next){
for(struct car* this = first; this != NULL; this = this->next){
printf("%s\n", this->value);
}
/*struct car* this = first;