answered question
/* Program of circular queue using array in C*/ # include #include # define MAX 5 int cqueue_arr[MAX]; int front = -1; int rear = -1; main() { int choice; while(1) { printf("1.Insertn"); printf("2.Deleten"); printf("3.Displayn"); printf("4.Quitn"); printf("Enter your choice : "); scanf("%d",&choice); switch(choice) { case 1 : Insert(); break; case 2 : Del(); break; case … Read more