Question
Programming and Data Structure Question on Character String
The postfix for a string is ABC + − D*, the actual string will be :
A
(A-(B+C))*D
B
((A-B)+C)*D
C
((A+B)-C)*D
D
(A+(B-C))*D
Answer
(A-(B+C))*D
Explanation
Solution
The correct option is(A):(A-(B+C))*D