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

  2. Operators in C - GeeksforGeeks

    1 day ago · Operators in C are special symbols used to perform operations on variables, constants, and expressions. They form the foundation of programming logic by enabling arithmetic calculations, …

  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. 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 …

  5. Operators in C and C++ - Wikipedia

    Operators in C and C++ This is a list of operators in the C and C++ programming languages. All listed operators are in C++ and lacking indication otherwise, in C as well. Some tables include a "In C" …

  6. Operators - C++ Users

    Operators Once introduced to variables and constants, we can begin to operate with them by using operators. What follows is a complete list of operators. At this point, it is likely not necessary to know …

  7. operator overloading - cppreference.com

    User-defined classes and enumerations that implement the requirements of BitmaskType are required to overload the bitwise arithmetic operators operator&, operator|, operator^, operator~, operator&=, …

  8. 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 …

  9. Operators Wiki

    May 15, 2026 · MisterWeaboo (Moderator) OK

  10. Python Operators - W3Schools

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