C Sharp (C#) - Exception Handling
What output will the following C# code produce?
try { int num = 8; int denom = 0; int result = num / denom; Console.WriteLine(result); } catch (DivideByZeroException) { Console.WriteLine("Division by zero error"); }