NESTING OF STRUCTURES

Nesting of structure within itself is not valid. Nesting of structure can be
extended to any level.
struct time
{
int hr,min;
};
struct day
{
int date,month;
struct time t1;
};
struct student
{
char nm[20];
struct day d;
}stud1, stud2, stud3;
Posted on by