Among unary operation which operator represents increment?
Answers
Answered by
2
In the C family of languages, the following operators are unary: Increment: ++x , x++ Decrement: −−x , x−− Address: &x.
HOPE IT HELPS
Answered by
0
Among unary operation Operator ++ represents increment.
Explanation:
- In unary operator the symbol + is used to represent the positive value.
- Increment operator symbol ++ increments the value of a variable by 1.
- The increment operators are commonly implemented in imperative programming languages.
- The increment operator increases, and the decrement operator decreases, the value of its operand by 1.
- Unary operator are the operator that act upon a single operand to produce a new value .
- There are two types of unary operator they are unary minus( - ) and increment ( ++ )
Similar questions