Ongeveer 34.500 resultaten
Koppelingen in nieuw tabblad openen
  1. C Unary operators - Codecademy

    6 feb. 2025 · Syntax operator operand; operator: A unary operator that performs an operation on a single operand. operand: The variable or value on which the operator acts. Note: In postfix …

  2. C++ (C Plus Plus) | Operators | Assignment Operators | Codecademy

    26 sep. 2025 · Assignment operators in C++ are fundamental operators used to assign values to variables. They perform the essential task of storing data in memory locations represented by …

  3. what is an operand? - Codecademy

    Subtraction (-) Addition (+) Examples of Arithmetic operator usage on operands: 5 (Operand) + 7 (Operand) 7 (Operand) * 3 (Operand) There are Arithmetic Operators, Logical Operators, …

  4. C Operators - Codecademy

    10 jun. 2022 · C operators perform mathematical, logical, and bit-level operations on variables and values.

  5. C# (C Sharp) | Operators | Codecademy

    3 nov. 2022 · Increment, ++, which increments its single operand by one. Decrement, --, which decrements its single operand by one. Unlike the other arithmetic operators, the increment and …

  6. JavaScript | Nullish Coalescing | Codecademy

    8 jan. 2025 · In JavaScript, the nullish coalescing (??) operator is a logical operator that evaluates the left-hand operand and returns it if it is not nullish (i.e., not null or undefined). Otherwise, it …

  7. C++ (C Plus Plus) | Operators | Codecademy

    20 jun. 2025 · Perform operations on operands to manipulate data, make calculations, and control program flow in C++ programming.

  8. Python Operators - Codecademy

    22 jul. 2025 · Operators in Python programming are special symbols or keywords that perform operations on variables and values. They are fundamental building blocks that allow developers …

  9. C++ (C Plus Plus) | Operators | Logical Operators | Codecademy

    6 aug. 2025 · Logical operators perform logical operations such as AND, OR, and NOT to combine or modify boolean expressions in C++.

  10. C++ (C Plus Plus) | Operators | Arithmetic Operators | Codecademy

    26 mrt. 2025 · Arithmetic operators perform mathematical operations such as addition, subtraction, multiplication, division, modulus, increment, and decrement in C++.