From a078a4f429a4db3deef939bca7361e2aeb909cd8 Mon Sep 17 00:00:00 2001 From: Radovan Kofira Date: Thu, 5 Nov 2020 20:29:42 +0100 Subject: [PATCH] 70% --- cv5/a_train.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv5/a_train.c b/cv5/a_train.c index 5df0178..56bc045 100644 --- a/cv5/a_train.c +++ b/cv5/a_train.c @@ -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; } }