00:00
Question #1
What will be the output of the following program?
public class Program
{
public static void Main()
{
Person per = new Person();
Console.WriteLine(per.Id);
}
}
public class Person
{
public int Id;
}
What will be the output of the following program?
public class Program
{
public static void Main()
{
Person per = new Person();
Console.WriteLine(per.Id);
}
}
public class Person
{
public int Id;
}