Convert the following expression to postfix and prefix
(A+B) * (D-C)
Answer Posted / revathy
PREFIX : *+AB-DC
POSTFI : AB+DC-*
| Is This Answer Correct ? | 19 Yes | 0 No |
Post New Answer View All Answers
What is meant by inheritance?
What is a union?
What are the disadvantages of c language?
What is pointer to pointer in c with example?
Can we add pointers together?
In c language can we compile a program without main() function?
Explain what is #line used for?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the general form of #line preprocessor?
How do we make a global variable accessible across files? Explain the extern keyword?
a c code by using memory allocation for add ,multiply of sprase matrixes
how to write a c program to print list of fruits in alpabetical order?
Do you know the purpose of 'register' keyword?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none