If I am trying to print value of "a" why is it showing error? Why has the exception become an error?
class Ankit1
{
public static void main(String args[])
{
float d,a;
try
{
d=0;
a=44/d;
System.out.print("Its not gonna printed"+a); //if Exception not occurs then it will print and it will ot goto catch block
}
catch(ArithmeticException e)
{
System.out.println("Print hoga"+a);//why error come??
}
}
}
