What is the output of the following code?
using System; class MainClass { public static void Main(string[] args) { int x; Console.WriteLine (x); } }
Console.WriteLine (x); // Compile-time error
Local variables must be assigned a value before they can be read.