Tag Archives for Queue
implentation of queue using arrays
/* Implentation of queue using arrays */ # include <stdio.h> # define SIZE 10 int arr[ SIZE ], front = -1, rear = -1, i ; void enqueue() ; void dequeue() ; void display() ; int … Continue reading

