<AptiCode/>

Question 536: Which of the following are unary operators in C?1.!2.sizeof3.~4.&&

tcs
wipro
infosys
general
aptitude
expressions
c-programming

An operation with only one operand is called unary operation.Unary operators:!Logical NOT operator.~bitwise NOT operator.sizeofSize-of operator.&&Logical AND is a logical operator.Therefore, 1, 2, 3 are unary operators.