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
Write a program that can show the multiplication table.
Why do we use null pointer?
write a program to display numbers from 1 to 10 and 10 to 1?
How can I read a binary data file properly?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Why enum is used in c?
12345 1234 123 12 1
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What is a void pointer in c?
Find the highest of three numbers and print them using ascending orders?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)