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 moreRecursive Reverse string (Id-3470) Write a recursive ‘C’ program to print the reverse of the string. Note: Function dec…
Read moreTUBE AND AGE ID-3468 A game is conducted with ‘n’ players. Given the name, age and size of tube with each player and a …
Read moreFunction to convert to Qudadecimal (Id-3471) A Quadadecimal number system is a hypothetical number system with base 14…
Read moreBEST SALES PERSON (ID-3469) A company stores the name, age and sales made in five cities of their salespersons, given t…
Read more
Social Profiles