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

Post New Answer

More C Interview Questions

What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }

4 Answers   ADITI,


What is 'bus error'?

0 Answers  


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4

9 Answers   IBM, NIIT, Winit,


Disadvantages of C language.

0 Answers   Impetus,


What is a program flowchart and how does it help in writing a program?

0 Answers  


difference between c and c++?

2 Answers  


How do I copy files?

0 Answers  


what is a c-language.what is do.

4 Answers   HCL,


write a programme to convert temperature from farenheit to celcius?

4 Answers   IBM,


Is that possible to add pointers to each other?

0 Answers  


Explain the difference between structs and unions in c?

0 Answers  


Categories