#include<iostream.h> #include<conio.h> void main() { clrscr(); int queue[10],front=0,rear=0,n,item,ch; char ...
Read More
WAP to insert a new element in an array
#include<iostream.h> #include<conio.h> void main() { clrscr(); int a[10],i,n,x,y; cout<<"enter the no. ...
Read More
WAP to find the location of an element of an array
#include<iostream.h> #include<conio.h> void main() { clrscr(); int a[10],i,n,x; cout<<"enter the no. of...
Read More
WAP to display elements of an array
#include<iostream.h> #include<conio.h> void main() { int a[10],i,n; cout<<"enter t...
Read More
WAP to search an element from a linked list
#include<iostream.h> #include<conio.h> #include<process.h> class node { public: ...
Read More
Subscribe to:
Posts (Atom)