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
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
what is the difference between #include<> and #include”…”?
What is the scope of local variable in c?
Can true be a variable name in c?
What is pass by reference in c?
Write any data structure program (stack implementation)
How to develop software using "c" programming?
Why can arithmetic operations not be performed on void pointers?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
what is used instead of pointers in java than c?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search