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 are void pointers in c?

0 Answers  


write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word

1 Answers   Sienna Ecad, Wipro,


What is a 'null pointer assignment' error?

0 Answers  


what is the stackpointer

2 Answers  


What does main () mean in c?

0 Answers  






What is function prototype in c language?

0 Answers  


write a c program to find largest of three numbers using simple if only for one time.

1 Answers  


What is meant by gets in c?

0 Answers  


What are inbuilt functions in c?

0 Answers  


Explain the difference between null pointer and void pointer.

0 Answers   TCS,


There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.

1 Answers   HCL, iGate,


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


Categories