Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Re: FIFO queues in C
please tell me weather the following algorithm for deletion of an element in a queue from front is right or wrong: del(int queue[max],item) 1.repeat step 2 to 4 until front==rear 2.item=queue[front]; 3.front=front+1 4.print deleted element is item 5.set front=-1,rear=-1 6.print undeflow
The End.
kiranxxx