0.15
This commit is contained in:
parent
26fb4270d0
commit
74b4733ee1
@ -17,9 +17,10 @@ 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++;
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(newcar->value, target);
|
strcpy(newcar->value, target);
|
||||||
|
Loading…
Reference in New Issue
Block a user