This commit is contained in:
Radovan Kofira 2020-11-05 19:36:45 +01:00
parent 26fb4270d0
commit 74b4733ee1

View File

@ -17,8 +17,9 @@ struct car* add_car(struct car* first,const char* target) {
struct car* temp=first; struct car* temp=first;
int length=0; int length=0;
while(temp!=NULL){ while(temp!=NULL){
if(temp->next!=NULL) if(temp->next!=NULL){
temp=temp->next; temp=temp->next;
}
length++; length++;
} }