Computer Science, asked by randhawaravneet202, 2 months ago

the number of unary operators in C are_______​

Answers

Answered by anushkapande28
1

Answer:

C has two unary operators for incrementing and decrementing scalar objects. The increment operator ++ adds 1 to its operand; the decrement operator - subtracts 1. Both ++ and - can be used either as prefix operators (before the variable: ++n ) or postfix operators (after the variable: n++ ).

Similar questions