Evaluation of Postfix and Prefix Expression Arun 06:49 0 #include <conio.h> #include <stdio.h> #include <string.h> int menu() { int ch; printf("\n\nMENU"); pr...
C program to convert infix to postfix expression Arun 07:46 0 Program: #include <stdio.h> #include <string.h> int push(char item,char s[],int top) { top=top+1; s[top]=item; ...
C program to convert infix to postfix expression and evaluation. Arun 09:51 0 Program: #include<stdio.h> #include<string.h> int pr(char op) { switch(op) { case '*': return 2;...
Program to Merge Two Arrays Arun 06:34 0 Algorithm 1.Read the size of array A and assign it to m 2.Print "Enter elements of array A" 3.for(i=0;i<m;i++) ...
Stack and Queue in an array. Arun 11:03 0 Algorithm_Push(): 1.if ((top>=size-1) OR (top>=rear-1)) //check top occupies whole arrray (ie, size-1) or just before ...