Tutorialsteacher

Follow Us

00:00
Question #1

What will be the output of the following program?

public class Program
{
	public static void Main()
	{
		int?[] arr = new int?[5];
		Console.WriteLine(arr[0]); 
	}
}