using System;
namespace structuresdemo
{
struct book
public string title;
public int price;
public string author;
public int numberofpages;
}
public class Program
public static void Main()
book b1 = new book();
b1.title="programming in c";
b1.author="balaguruswami";
b1.price = 250;
b1.numberofpages=500;
Console.WriteLine(b1.title+" is authored by "+b1.author+" and it's cost is "+b1.price+" and it's numberofpages are "+b1.numberofpages);