write a program to convert a expression in polish
notation(postfix) to inline(normal) something like make
723+* (2+3) x 7 (not sure) just check out its mainly
printing expression in postfix form to infix.
No Answer is Posted For this Question
Be the First to Post Answer
how many key words availabel in c a) 28 b) 31 c) 32
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
related to rdbms query .
What is the use of #include in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
Explain void pointer?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What is meant by inheritance?
What is pointers in c?
Explain modulus operator. What are the restrictions of a modulus operator?