Program to Implement Double Ended Queue byBittu Kumar •March 02, 2021 Program to Implement Double Ended Queue Here is the code of program:- #include<stdio.h> #include<conio.h> void main() { int front=0,rear=-1,queue[20],n,data,i=0,ch; clrscr(); printf("Enter size of Queue: &quo…