This way
DataSet ds = new DataSet();
ds.Tables.Add();
ds.Tables[0].Columns.AddRange(new DataColumn[2] { new DataColumn("Coupon"), new DataColumn("Code") });
ds.Tables[0].Rows.Add("Shirt", 199);
ds.Tables[0].Rows.Add("Football", 020);
ds.Tables[0].Rows.Add("Shirt", 566);
ds.Tables[0].Rows.Add("Disc", 099);
ds.Tables[0].Rows.Add("Watch", 54);
ds.Tables[0].Rows.Add("Clock", 890);
//Add a new column
ds.Tables[0].Columns.Add("Price");