C Sharp (C#) - Exception Handling
What will be the output of this C# code?
try {
Console.WriteLine("Start");
int x = 5 / 0;
Console.WriteLine("End");
} catch (DivideByZeroException) {
Console.WriteLine("Error caught");
}