diff --git a/Circular_Linked_List.c b/Circular_Linked_List.c index 920f9a7..15d8fe4 100644 --- a/Circular_Linked_List.c +++ b/Circular_Linked_List.c @@ -1,7 +1,7 @@ /* This is code based from the website below to demonstrate circular linked lists in the lecture, please refer to site: https://www.geeksforgeeks.org/circular-linked-list-set-2-traversal/ -Halil DURMUÞ 02.03.2018 +Halil DURMUÞ 02.03.2018 BLG221 Data Structures ITU */ #include @@ -61,10 +61,11 @@ int main() push(&head, 56); push(&head, 2); push(&head, 11); + push(&head, 15); printf("Contents of Circular Linked List\n "); printList(head); getchar(); return 0; -} \ No newline at end of file +}