Q. Find the output of the following program.
Code:
main(){
int a = 10 / 0;
}
β
Correct Answer: (C)
exception
main(){
int a = 10 / 0;
}
You must be Logged in to update hint/solution