InterviewSolution
Saved Bookmarks
| 1. |
What is the prefix and post fix notation of (a + b) * (c + d) ? |
|
Answer» Prefix Notation − * + a b + c d Postfix Notation − a b + c d + * |
|