C Sharp (C#) - Exception Handling
What will be the output of this C# code?
try { string s = null; Console.WriteLine(s.Length); } catch (NullReferenceException) { Console.WriteLine("Null reference error caught"); }