Is it legal to have a \"static\" member within a C struct?
For example
struct my_struct { int x; static int y; };
If indeed
No, not in C
C
(You can have a static member in a C++ structure.)
C++