If I have these structures:
typedef struct { int x; } foo; typedef struct { foo f; } bar;
Normally you would access x through
x
This is not possible in C. In C++ however you can use inheritance which is probably what you were thinking about.