This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

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?

0