About 47,900 results
Open links in new tab
  1. Operators in C - GeeksforGeeks

    Nov 1, 2025 · Operators are the basic components of C programming. They are symbols that represent some kind of operation, such as mathematical, relational, bitwise, conditional, or logical …

  2. Operators in C and C++ - Wikipedia

    All relational (comparison) operators can be overloaded in C++. Since C++20, the inequality operator is automatically generated if operator== is defined and all four relational operators are automatically …

  3. Table of operators - Microsoft Support

    Use operators in Access expressions to specify what kind of operation to perform, such as add, multiply, compare, or concatenate.

  4. What is an Operator? - W3Schools

    Operators are symbols or keywords that tell the computer what operations to do on values or variables.

  5. C - Operators - Online Tutorials Library

    These operators are used to perform bit-level operations on operands. The most common bitwise operators are AND (&), OR (|), XOR (^), NOT (~), left shift (<<), and right shift (>>).

  6. Operators - C++ Users

    What follows is a complete list of operators. At this point, it is likely not necessary to know all of them, but they are all listed here to also serve as reference.

  7. Comparison Operators: =, <>, >, <, >=, <=

    Comparison operators are symbols used in programming languages to compare two values. The equal to (=) operator checks if two values are equal, while the not equal to (<>) operator checks if two …

  8. Operators and expressions - List all operators and expression - C# ...

    Jan 24, 2026 · Learn the C# operators and expressions, operator precedence, and operator associativity.

  9. What are Operators in Programming? - GeeksforGeeks

    Feb 21, 2024 · Operators in programming are symbols or keywords that represent computations or actions performed on operands. Operands can be variables, constants, or values, and the …

  10. Operator (computer programming) - Wikipedia

    In computer programming, an operator is a programming language construct that provides functionality that may not be possible to define as a user-defined function (e.g. sizeof in C) or has syntax different …