Interview Quetions

What is the process to create increment and decrement stamen in C?

There are two possible methods to perform this task.

1) Use increment (++) and decrement (-) operator.

Example When x=4, x++ returns 5 and x- returns 3.

2) Use conventional + or – sign.

When x=4, use x+1 to get 5 and x-1 to get 3.

Leave a Reply

Your email address will not be published. Required fields are marked *