Computer Science, asked by suneetha1, 1 year ago

what is increment and decrement operators in c language

Answers

Answered by Samundeeswari
1
Increment operators are used to increase the value of the variable by one and decrement operators are used to decrease the value of the variable by one...

Ex:
Increment operator : ++ i ; i ++ ;
Decrement operator : – – i ; i – – ;
Answered by Anonymous
2

In C language increment operator is that operator which increases the value of a variable by one and and decrement operator decreases the value of a variable by one .

Similar questions