using System;
/**3.) Create a class named Person with an instance variable named full_name.
Declare one (1) constructor without a parameter and initialize the variable with a default value.
**/
public class Program
{
public static void Main()
Person per = new Person();
Console.WriteLine("\n"+per.full_name);
}
class Person{
public String full_name; //Can be also public, but not recommended
public Person(){
full_name = "Default_Name";
//Galolo, Dazel