Say I\'m using 2 structs in C like:
struct department { char name[10]; int floor; } struct person { char name[10]; struct department *dep; };