Breaking News
recent
0

WAP to insert, delete and traverse a queue

#include<iostream.h> #include<conio.h> void main() {   clrscr();   int queue[10],front=0,rear=0,n,item,ch;   char ...
Read More
0

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
0

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
0

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
0

WAP to delete an element from an array

#include<iostream.h> #include<conio.h> void main() { clrscr(); int a[100],i,n,x; cout<<"enter the no. o...
Read More
0

WAP to search an element from a linked list

#include<iostream.h> #include<conio.h> #include<process.h> class node {                 public:             ...
Read More
Powered by Blogger.