execution of conditional operator
I just wanted to know how actually the expression which has many conditional operators in it is executed..
e.g System.out.println(8>2?7<3?6>3?5:3:9:1);
I just wanted to know that here I have 2 conditions to be true ,so corresponding to it ,actually how the output would be generated,...
e.g System.out.println(8>2?7<3?6>3?5:3:9:1);
I just wanted to know that here I have 2 conditions to be true ,so corresponding to it ,actually how the output would be generated,...
0