public class increment { public static void main(String args[]) { int a = 5; System.out.print(++a * 6); }}
Operator ++ has more preference than *, thus a becomes 6 and when multiplied by 6 gives 36.output: 36
Previous Question Next Question
Your comments will be displayed only after manual approval.