55 Likes
unary operators operate on a single operand whereas binary operators operate on two operands.
Answered By
37 Likes
if (a>b&&b>c) then largest number is:
Evaluate the given expression when the value of a=2 and b=3
b*=a++ - ++b + ++a; System.out.println("a= "+a); System.out.println("b= "+b);