What is the output of the following program?
public class DC
{
    public static void main(String[] args) 
    {
        int Batman= 1;
        while ( Batman--) 
        {
            System.out.println("Endure,Master Wayne");
        }
    }
}

Posted on by