About 57,000,000 results
Open links in new tab
  1. C Relational and Equality Operators | Microsoft Learn

    Jan 25, 2023 · Both operands of any relational or equality operator can be pointers to the same type. For the equality (==) and inequality (!=) operators, the result of the comparison indicates whether the two …

  2. Operators in C and C++ - Wikipedia

    Most of the operators available in C and C++ are also available in other C-family languages such as C#, D, Java, Perl, and PHP with the same precedence, associativity, and semantics.

  3. Operators in C - GeeksforGeeks

    Nov 1, 2025 · The relational operators in C are used for the comparison of the two operands. All these operators are binary operators that return true or false values as the result of comparison.

  4. Operators in C Programming (All Types With Examples)

    Jul 14, 2025 · Learn about operators in C programming with detailed examples. Explore all types: arithmetic, logical, relational, bitwise, and more for coding efficiency.

  5. C - Operators - Online Tutorials Library

    We shall learn more about arithmetic operators in C in a subsequent chapter. The following table shows all the arithmetic operators supported by the C language.

  6. Operators in C - Programiz

    An operator is a symbol that operates on a value or a variable. For example: + is an operator to perform addition. In this tutorial, you will learn about different C operators such as arithmetic, increment, …

  7. Operators/Punctuation (GNU C Language Manual)

    Here we describe the lexical syntax of operators and punctuation in C. The specific operators of C and their meanings are presented in subsequent chapters. Some characters that are generally …

  8. C Operators - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.

  9. C Operators - w3resource

    Sep 24, 2024 · Arithmetic operators include +, -, *, /, %, which performs all mathematical manipulations. These operators can operate on any built-in data type allowed in C. Table shows the function of …

  10. Learn C: Operators Cheatsheet | Codecademy

    The operators are as follows: C can perform logical operations using the following operators: and: && (Are both sides true?) or: || (Is at least one side true?) not: ! (True becomes false and false becomes …