C Sharp (C#) - Exception Handling
What will be the output of this C# code?
try {
int x = 10 / 0;
Console.WriteLine("Result: " + x);
} catch (DivideByZeroException) {
Console.WriteLine("Cannot divide by zero.");
}