want some help regarding my project in c language using mainly pointers & arrays about STUDENT INFORMATIONS it shuld include their names, their parents name, their roll no., corse sode , section, and their attendence...... plz if posssible give examples with some students..... so i could edit it later time with my claz mates name.......... or i wont be knowing where to edit
1
Expert's answer
2011-10-25T08:22:47-0400
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace StdInformation { public class Student{ private string names;
public string Names { get { return names; } set { names = value; } } private string parentsname;
public string Parentsname { get { return parentsname; } set { parentsname = value; } } private string roll;
public string Roll { get { return roll; } set { roll = value; } } private string corsesode;
public string Corsesode { get { return corsesode; } set { corsesode = value; } } private string section;
public string Section { get { return section; } set { section = value; } } private string attendence;
public string Attendence { get { return attendence; } set { attendence = value; } } public Student() {
Comments
Leave a comment