what is increment and decrement operators in c language
Answers
Answered by
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 – – ;
Ex:
Increment operator : ++ i ; i ++ ;
Decrement operator : – – i ; i – – ;
Answered by
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