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

28. September 2008 by Jishnu
Categories: C Programming | Tags: , | 3 comments

← Older posts