23. What will be the output of following program?
(this is correct version of question)
class Myprint
{
public static void main (String K[])
{
int m=0;
boolean b2=true;
boolean b3=false,bu;
boolean b4=(b2 &&((m++)==0));
b4=(b3 &&((m++)==0));
System.out.println(m);
}
}