j t
2008-08-22 12:26:02 UTC
{
struct student
{
char name[20];
int marks;
};
student *ptr;
ptr=new student[5];
now how can i enter data into these five objects?