This commit is contained in:
Radovan Kofira 2020-11-05 20:21:48 +01:00
parent 3ac07444f5
commit 755275c1c9

View File

@ -29,8 +29,9 @@ struct car* add_car(struct car* first,const char* target) {
void print_train(struct car* first) { void print_train(struct car* first) {
struct car* this=first; struct car* this=first;
while(this->next!=NULL){ while(this->next!=NULL){
this=this->next;
printf(this->value); printf(this->value);
this=this->next;
} }
} }