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 array of structure in c?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Where static variables are stored in memory in c?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
how to implement stack operation using singly linked list
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
a C prog to swap 2 no.s without using variables just an array?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
Write program to remove duplicate in an array?
What is the data segment that is followed by c?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21