Data Structures using C Language / List Implementation of Queue using C program

Program
Output
Queue Implementation using Linked List
1.Enqueue      2.Dequeue     3.Display         4.Exit
Enter your choice: 1
Enter a value to insert : 9
Node Inserted
1.Enqueue      2.Dequeue     3.Display         4.Exit
Enter your choice: 1
Enter a value to insert : 3
Node Inserted
1.Enqueue      2.Dequeue     3.Display         4.Exit
Enter your choice: 1
Enter a value to insert : 6
Node Inserted
1.Enqueue      2.Dequeue     3.Display         4.Exit
Enter your choice: 3
936Null.



Home     Back