InterviewSolution
Saved Bookmarks
| 1. |
Find the sum of successor of n and predecessor of n |
|
Answer» Predecessor of `n= n -1` Successor of `n = n+1` `:.` Sum of successor and predecessor of `n= n-1+n+1 = 2n` |
|