Find the output of:
System.out.println("output 1:" +(a=b*c));
System.out.println("output 2:" +(a=(b*c)));
Answers
Answered by
1
the output will be like..it will print whatever is within " ..." and evaluate the a=b*c part as per the values entered
Similar questions