Skip to main content

What is Increament or decrement operator?

They are (++) increment operator in c.
(--)decrement operator in c.
These two operators are called unary operator as they require only one operand.The operand should be a variable not a constant.

* (++) operator :- Add one to the value of operand.
*(--) operator :- substract one to the value of operand.

# These operators are used in two form
1 pastfix form
2 prefix form
         

Comments

Popular posts from this blog

Math notes

Supremum   math Logical math Recurrence Relation  

What is sequential flow chart?

These types of flow chart indicates that the flow of control normally passes from one instructions to the next in a sequence with in a programme. Example :- design a flow chart to calculate addition of two number                          

React Js interview questions