The ______ operator can be used to increment a variable by 1 in a postfix manner.

  • Assignment
  • Bitwise Shift
  • Decrement
  • Increment
The increment operator (++) can be used to increment a variable by 1 in a postfix manner. For example, if x is a variable, x++ will increment the value of x by 1 after its current value is used. This is often used in loops and other situations where you need to increment a variable.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *