About 843,000 results
Open links in new tab
  1. What are Operators in Programming? - GeeksforGeeks

    Feb 21, 2024 · From arithmetic and comparison operators for numerical tasks to logical operators for decision-making, and bitwise operators for low-level bit manipulation, each type serves …

  2. Operator (computer programming) - Wikipedia

    Many operators differ syntactically from user-defined functions. In most languages, a function is prefix notation with fixed precedence level and associativity and often with compulsory …

  3. Operators and expressions - List all operators and expression

    Mar 8, 2023 · C# provides a number of operators. Many of them are supported by the built-in types and allow you to perform basic operations with values of those types. Those operators …

  4. Operators - C++ Users

    The logical operators && and || are used when evaluating two expressions to obtain a single relational result. The operator && corresponds to the Boolean logical operation AND, which …

  5. What is an Operator? - W3Schools

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

  6. C Operators - Online Tutorials Library

    C Operators - Learn about C operators, their types, and how to use them effectively in your programming tasks. Enhance your understanding of arithmetic, relational, and logical …

  7. What is an Operator? - Computer Hope

    Feb 6, 2025 · For example, in "1 + 2", the "1" and "2" are the operands and the plus symbol is the operator. Below is a listing of common operators found in programming languages with …

  8. operator overloading - cppreference.com

    Feb 5, 2025 · The operators :: (scope resolution), . (member access), .* (member access through pointer to member), and ?: (ternary conditional) cannot be overloaded. New operators such as …

  9. Expressions and operators - JavaScript | MDN - MDN Web Docs

    Jun 2, 2025 · This chapter describes JavaScript's expressions and operators, including assignment, comparison, arithmetic, bitwise, logical, string, ternary and more.

  10. Operators in C - Programiz

    In this tutorial, you will learn about different C operators such as arithmetic, increment, assignment, relational, logical, etc. with the help of examples. Certification courses in Python, …