gcc question about the embedded type definitions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I have a question on embedded type definitions.

If in a structure definition, another type is defined. e.g.

typedef struct S1 {
struct S2 {
int a;
}
} S1;

is the data type S2 visible outside S1? Originally i think it is not visible outside.

But in gcc, I can declare a varible of type struct S2, and operate on it. e.g.:

S2 b;
b.a = 100;
printf("result = %d\n", b.a);

That implies the name of the structure type S2 must be unique in the C file. Am I right? Can anyone elaborate on this? Thanks!

Best Regards,
Zhang Wei


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux