This commit is contained in:
Radovan Kofira 2020-11-05 20:29:42 +01:00
parent 0db58c46ff
commit a078a4f429

View File

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