Operators In C & Types
Operators In C {tocify} $title={ Table of Contents } Definition An Operator is a symbol, which specifies what action to be taken upon Operands. An expression is basically a combination of operands & operators that yields a single value in which operand may be a variable or constant Example Syntax op1 + op2 Here + is the operator and op1 and op2 are the operands Types of operators Arithmetic Operators Relational Operators Logical Operators Bitwise Operators Assignment Operators Conditional Operators Special Operators Increment/Decrement Operators Arithmetic Operators Arithmetic operators perform arithmetic operations such as Addition, Subtraction, Multiplication, Division & Mod. Following table shows list of arithmetic operators : Operator Description + Addition - Substraction ...