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 you list files in a directory?
What is wrong with this program statement? void = 10;
how to count no of words,characters,lines in a paragraph.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is static volatile in c?
Why does everyone say not to use gets?
What is sizeof array in c?
What is dynamic dispatch in c++?
Can a pointer be volatile in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Difference between malloc() and calloc() function?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Is c pass by value or reference?
a program that can input number of records and can view it again the record
What are external variables in c?