Explaining LinkListExample1.c
Here's what happens when you run LinkListExample1.c
UNIX prompt >> a.out
Enter customer's last name: Tyler
Enter Case ID : 123456
Enter status (no gaps) : open
Options:
(1) Add another case to the front the Link-List.
(2) Remove a case from the Link-List.
(3) Quit!
Select an option: 1
Enter customer's last name: Jordan
Enter Case ID : 197628
Enter status (no gaps) : open
Options:
(1) Add another case to the front the Link-List.
(2) Remove a case from the Link-List.
(3) Quit!
Select an option: 1
Enter customer's last name: Brutus
Enter Case ID : 161568
Enter status (no gaps) : closed
Options:
(1) Add another case to the front the Link-List.
(2) Remove a case from the Link-List.
(3) Quit!
Select an option: 2
Enter customer's last name: Brutus
Enter Case ID : 161568
Enter status (no gaps) : closed
Options:
(1) Add another case to the front the Link-List.
(2) Remove a case from the Link-List.
(3) Quit!
Select an option: 2
Options:
(1) Add another case to the front the Link-List.
(2) Remove a case from the Link-List.
(3) Quit!
Select an option: 3
UNIX prompt >>
Back to the Index