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

  2. What are Operators in Programming? - GeeksforGeeks

    Feb 21, 2024 · What are Operators in Programming? Operators in programming are symbols or keywords that represent computations or actions performed on operands. Operands can be …

  3. What is an Operator? - W3Schools

    What is an Operator? An operator is a symbol or keyword that tells the computer what operation it should perform on values or variables. In the example below, the + operator is used to add the …

  4. C - Operators - Online Tutorials Library

    Assignment Operators As the name suggests, an assignment operator "assigns" or sets a value to a named variable in C. These operators are used to assign values to variables. The "=" symbol is …

  5. What is an operator in programming? - TechTarget

    Aug 16, 2022 · Learn what an operator, a character that represents a specific mathematical or logical action or process, is in programming. Explore different types of operators.

  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. Operator — Definition, Formula & Examples

    An operator is a symbol or function that maps one or more input values (operands) to an output value according to a defined rule. In arithmetic and algebra, binary operators such as + + +, − - −, × \times …

  8. Operators in C - GeeksforGeeks

    Apr 22, 2026 · 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 …

  9. C Operators - W3Schools

    Operators Operators are used to perform operations on variables and values. In the example below, we use the + operator to add together two values:

  10. Computer Programming - Operators - Online Tutorials Library

    An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.