From 31a5eceba5d8ca84c53291f185022e885fa81348 Mon Sep 17 00:00:00 2001 From: Radovan Kofira Date: Thu, 5 Nov 2020 20:37:37 +0100 Subject: [PATCH] 57% --- cv5/a_train.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cv5/a_train.c b/cv5/a_train.c index 56bc045..f988f6a 100644 --- a/cv5/a_train.c +++ b/cv5/a_train.c @@ -28,10 +28,10 @@ struct car* add_car(struct car* first,const char* target) { void print_train(struct car* first) { struct car* this=first; - while(this->next!=NULL){ + /* while(this->next!=NULL){ printf("%s",this->value); this=this->next; - } + }*/ } void cancel_train(struct car* first) {