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 difference between break and continue?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
Write a program to print “hello world” without using semicolon?
How can I find the modification date of a file?
What are the types of pointers?
Difference Between embedded software and soft ware?
What are all different types of pointers in c?
Write a progarm to find the length of string using switch case?
Explain what is the difference between a string and an array?