what type of operater is " ++K"
Answers
Answered by
1
Answer:
Unary operators ..
++ and -- are the only operators in C which can be either prefix (e.g. ++k , --k ) or postfix (e.g. k++ , k-- ). When used as prefix, operators ++ and -- (preincrement and predecrement) add or subtract one from the value of the operand before the evaluation.
hope it helps you...
Similar questions