which types of data structure will i use to convert infix to
post fix???
Answers were Sorted based on User's Feedback
Answer / abhishek munde
To convert the infix to postfix, STACK datastructure is
used. some may think about tree but by we only denote the
expression actual conversion is done through STACK.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / prashant
stack is really used to convert infix to postfix
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / khaja
stack only bcoz in memory the operations are done in stacks only
| Is This Answer Correct ? | 2 Yes | 1 No |
what is the stackpointer
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What are the different types of C instructions?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
What do you know about the use of bit field?
In header files whether functions are declared or defined?
Write a program to reverse a linked list in c.
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
What is the purpose of the statement: strcat (S2, S1)?
What are reserved words?
wtite a program that will multiply two integers in recursion function