InterviewSolution
Saved Bookmarks
| 1. |
Why does the expression 2 + 3*4 result in the value 14 and not the value 24? |
|
Answer» Operator precedence rules* make the expression to be interpreted as 2 + (3*4) hence the result is 14. |
|