About 23,400 results
Open links in new tab
  1. Increment and decrement operators - Wikipedia

    In languages syntactically derived from B (including C and its various derivatives), the increment operator is written as ++ and the decrement operator is written as --.

  2. Increment and Decrement Operators in C - GeeksforGeeks

    May 21, 2025 · The increment operator ( ++ ) is used to increment the value of a variable in an expression by 1. It can be used on variables of the numeric type, such as integer, float, character, …

  3. Increment/decrement operators - cppreference.com

    Increment and decrement operators are overloaded for many standard library types. In particular, every LegacyIterator overloads operator++ and every LegacyBidirectionalIterator overloads operator--, …

  4. Increment/decrement operators - cppreference.com

    Increment and decrement operators are overloaded for many standard library types. In particular, every LegacyIterator overloads operator++ and every LegacyBidirectionalIterator overloads operator--, …

  5. Increment ++ and Decrement -- Operator as Prefix and Postfix

    In this article, you will learn about the increment operator ++ and the decrement operator -- in detail with the help of examples in Java, C, C++ and JavaScript.

  6. Increment/decrement operators - cppreference.net

    Jan 20, 2025 · Increment and decrement operators are overloaded for many standard library types. In particular, every LegacyIterator overloads operator ++ and every LegacyBidirectionalIterator …

  7. Postfix Increment and Decrement Operators: ++ and --

    Aug 11, 2025 · The effect of applying the postfix increment operator (++) is that the operand's value is increased by one unit of the appropriate type. Similarly, the effect of applying the postfix decrement …