There are two possible methods to perform this task.
- Use increment (++) and decrement (-) operator.
Example: When x=4, x++ returns 5 and x- returns 3.
- Use conventional + or – sign.
Example: When x=4, use x+1 to get 5 and x-1 to get 3.
Shathana. S.R. Asked question April 28, 2023
