About 568,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. Table of operators - Microsoft Support

    Access supports a variety of operators, including arithmetic operators such as +, -, multiply (*), and divide (/), in addition to comparison operators for comparing values, text operators for …

  4. What is an Operator? - W3Schools

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

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

  6. What is an operator in programming? - TechTarget

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

  7. Operators and Operands | Definition, Types, and Difference

    Mar 28, 2025 · Operators and operands are fundamental elements in mathematics as well as in computing that serve as the objects upon which operators perform operations. These …

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

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

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

  10. Operators in C - GeeksforGeeks

    May 13, 2025 · In C language, operators are symbols that represent some kind of operations to be performed. They are the basic components of the C programming. In this article, we will …