[prev] [index] [next]

Nested Structures

One structure can be nested inside another

struct date { int day, month, year; };

struct time { int hour, minute; };

struct speeding {
	char        plate[7];
	double      speed;
	struct date d;
	struct time t;
};