The logical negation operator ! [exclamation] used in C++ and many other languages. However the return value of the operator is overlooked by many people.
The syntax of the operator follows is
! cast-expression
Where, the cast-expression operand must be of scalar type (returning only a single value, not multiple values like an array)
The result is of type int
Continue reading C++ Logical Negation Operator

Comments