Unary Operator in C
What is Unary Operator in c ? unary operators are used for produce a new value. This operator require only one operand. Types of Unary operators: Unary minus(-) Increment (++) Decrement (–) NOT(!) Address operator(&) sizeof() Unary Minus (-) : It is a unary operator which is used for changing the sign of a variable.A […]