Day 05
=======
Operators
==========
types of operators
------------------
Arithmetic operators
Relational/comparison operators
Logical operators &&(and) ||(or) !(not)
Increment & Decrement operators ++(increment operator) --(decrement operator)
Assignment =
conditional/ternary operator ?:(question mark column)
Arithmetic operators
==========================
Relational/comparison operators
==============================================
Logical operators &&(and) ||(or) !(not)
======================================
x y x&y(end) x||y(or) !x
true true true true false
true false false true
false true false true true
false false false false