C OPERATORS Flashcards
Lecture 7
Arithmetic Operators
An operator is a symbol that tells the compiler to perform specific mathematical
or logical functions
Prefix and postfix
If the operator is placed in front, it
is prefix but if it is placed behind, it
is postfix.
Prefix means, increment before
any operations are performed,
postfix is increment afterwards.
Addition, subtraction , multiplication, division,
*
/
%
modulus operator and remainder of integer division
++
increment increase by 1 integer value
–
Decrement :decrease by 1
=
Assignment not equal
*=
/=
%=
Add and Assignment
Subtracts and Assign
Multiply and Assign
Divide and Assign
Modulus and Assign
«=
»=
Left shift and Assignment
ex) C»=2 is same as C=C»2
Right shift and Assignment
&=
Bitwise and assignment
ex) C&=2 is C=C&2
^=
Rational operators
Used for
comparing two objects
== Rational Operator
Checks if 2 operands are equal
!= rational operator
Checks if operands are not equal
> or < operands
Checks greater than or less than
> =
<=
Rational operands
Checks if greater/less than OR if equal
Logical Operators
Simulate Boolean algebra upon comparison.
Expressions involving logical operators undergo Short-Circuit Evaluation.
&&
Logical AND operator
Both must meet condition
!!
Logical OR Operator
Atleast one must meet the condition
ll
Logical NOT operator
Reverse logical state-gives opposite of outcome.