which types of data structure will i use to convert infix to
post fix???
Answer Posted / 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 |
Post New Answer View All Answers
What does & mean in scanf?
What is %d used for?
What is difference between union and structure in c?
given post order,in order construct the corresponding binary tree
What is union and structure?
Why is c not oop?
What is the benefit of using #define to declare a constant?
What does do in c?
How do you do dynamic memory allocation in C applications?
How many keywords are there in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
write a program to concatenation the string using switch case?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Explain what is the best way to comment out a section of code that contains comments?
what is use of malloc and calloc?