BRACKETS ORDER CHECKING #include #include void main() { int ctr; int top=-1; char a[100],stack[100]; g…
Read moreREVERSEING A NUMBER #include #include #include void main() { char word[50],rev[50],stack[50]; gets(word); int i,l=strl…
Read moreIMPLEMENTATION OF QUEUE #include #define MAX 50 int queue_array[MAX]; int rear = - 1; int front = - 1; main() { int…
Read moreIMPLEMENTATION OF STACK #include #include void push(); void pop(); void display(); int i,choice,stack[100],n,x,top; voi…
Read moreIMPLEMENTATION OF QUEUE USING LINKED LISTS #include #include struct node { int info; struct node *ptr; }*front,…
Read moreIMPLEMENTATION OF STACK USING LINKED LISTS #include #include struct node { int info; struct node *ptr; }*top…
Read moreAmount remaining after shopping (Id-3472) Sherley goes for a shopping to a mall ‘M1’ . She uses credit card of bank ‘AB…
Read more
Social Profiles