What would be the output of the following program?
Class A {
public static void main(String args[]) {
int a = 0;
int b = 10 / a;
}
}
Reveal answer
Fill a bubble to check yourself
What would be the output of the following program?
Class A {
public static void main(String args[]) {
int a = 0;
int b = 10 / a;
}
}