using System; struct Person { public string name; public int age; public double height; } class TestStructureType { public static void Main () { Person p; p.name ="mani"; p.age = 24; p.height = 5.5; Console.WriteLine("Person Name: " + p.name); Console.WriteLine("Person Age: " + p.age ); Console.WriteLine("Height: "+ p.height); } } //csharp/7499