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
Explain how do I determine whether a character is numeric, alphabetic, and so on?
How can I handle floating-point exceptions gracefully?
Can a void pointer point to a function?
List the variables are used for writing doubly linked list program.
Explain how do you generate random numbers in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Why doesn't C support function overloading?
What is difference between constant pointer and constant variable?
What are valid operations on pointers?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Explain union.
What does the error message "DGROUP exceeds 64K" mean?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How can I call fortran?