Exercise Questions 3.29
12. Type Cast: Suppose we want to declare the result in a particular data type, we can type cast
the variable :
(data type) variable.
13.
Unary Operators: In unary operators, the operator precedes a single operand. The minus
operator is both a unary and a binary operator.
14.
++ , -- operators are called increment and decrement operators.
15. Assignment Operator operator is
=. This is also called equality operator.
16. The relational operators are :
> >= < and <=. Two more operators, known as equality
operators = = and ! =, have priority just below relational operators.
17. Logical Operators: These are
&& and || and NOT operator (!). Evaluation of expressions
connected by logical operators are done from left to right ...