symbol declaration, for an C structure element

If we define

struct _footype {
char c;
int x;
} foo;

foo would be a linkable symbol, being th aderess of real memory - of sizeof(struct _footype)

What can I do to declare a linkable symbol for x, the integer?

More questions in this forum