0
583views
What is a Increment And Decrement Operators

Subject : Structured Programming Approach

Title : Fundamental of C Programming

Marks : 2M

1 Answer
0
1views

C has two very useful operators that are not generally found in other languages. These are the increment and decrement operator:

++ and -The operator ++ adds 1 to the operands while – subtracts 1.It takes the following form:

++m; or m++

--m; or m—

Please log in to add an answer.