diff --git a/education/software development/ECE1400/Chapter 17 Exercises.md b/education/software development/ECE1400/Chapter 17 Exercises.md index 78e449d..1ebd569 100644 --- a/education/software development/ECE1400/Chapter 17 Exercises.md +++ b/education/software development/ECE1400/Chapter 17 Exercises.md @@ -72,7 +72,7 @@ struct node *insert_into_ordered_list(struct node *list, struct node *new_node) } ``` - +In the above code, if the new item needs to be ine ```c struct node *insert_into_ordered_list(struct node *list, struct node *new_node) { struct node *cur = list, *prev = NULL;