Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Circular_Linked_List.c
Original file line number Diff line number Diff line change
@@ -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<stdio.h>
Expand Down Expand Up @@ -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;
}
}