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
Explain what are the different file extensions involved when programming in c?
What are pointers in C?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
What is the maximum no. of arguments that can be given in a command line in C.?
Explain 'far' and 'near' pointers in c.
The statement, int(*x[]) () what does in indicate?
What are data structures in c and how to use them?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
what is array?