About 934,000 results
Open links in new tab
  1. 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 …

  2. 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 (i.e. sizeof in C) or …

  3. Table of operators - Microsoft Support

    An operator is a sign or symbol that specifies the type of calculation to perform within an expression. There are mathematical, comparison, logical, and reference operators.

  4. What is an Operator? - W3Schools

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

  5. OPERATOR Definition & Meaning - Merriam-Webster

    The meaning of OPERATOR is one that operates. How to use operator in a sentence.

  6. What is an Operator? - Computer Hope

    Sep 7, 2025 · Definition and various types of operators in computer programming. How operators manipulate values and examples and related terms to enhance your understanding.

  7. Operators - C++ Users

    Operations of addition, subtraction, multiplication and division correspond literally to their respective mathematical operators. The last one, modulo operator, represented by a …

  8. Arithmetic operators - cppreference.com

    Jun 25, 2024 · Returns the result of specific arithmetic operation. All operators in this table are overloadable. All built-in operators return values, and most user-defined overloads also return …

  9. 2.1. Operators and Operands - Weber

    Operators are symbols that instruct the computer to perform a single, simple task. Operands are the data, the expressions or values, on which they act or work. Operators and their operands …

  10. Operators in C - GeeksforGeeks

    Sep 20, 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 …