

InterviewSolution
Saved Bookmarks
1. |
X=5, find 1. a=x++ + x 2. a= ++x + x |
Answer» f all the PRE operators are solvedSecond step is to solve expressionThird step is to solve Post operatorsSo answer isPre OPR - X = 6Exp solved Y = 12Post opr X = 7X is 7Y is 12 |
|