which types of data structure will i use to convert infix to
post fix???

Answers were Sorted based on User's Feedback



which types of data structure will i use to convert infix to post fix???..

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

which types of data structure will i use to convert infix to post fix???..

Answer / prashant

stack is really used to convert infix to postfix

Is This Answer Correct ?    5 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / vikram

stack is used

Is This Answer Correct ?    5 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / karthikeyan

stack is used . since it preserves data .

Is This Answer Correct ?    3 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / khaja

stack only bcoz in memory the operations are done in stacks only

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

What is array of pointers to string?

0 Answers  


What is the difference between exit() and _exit() function in c?

0 Answers  


What are the features of c languages?

0 Answers  


Explain how can you tell whether a program was compiled using c versus c++?

0 Answers  


what is the difference between char * const and const char *?

2 Answers   TCS,






What is the difference between struct and union in C?

1 Answers  


Tell me with an example the self-referential structure?

0 Answers  


What are the 3 types of structures?

0 Answers  


write a c program to accept a given integer value and print its value in words

4 Answers   Vernalis, Vernalis Systems,


What does char * * argv mean in c?

0 Answers  


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

0 Answers  


without using arithmatic operator solve which number is greater??????????

1 Answers   Accenture,


Categories