I saw this question on SO and wondered where this kind of code can actually be used in the real time example.
struct a
{
static struct a b;
};
int main()
{
a::b;
return 0;
}
Also what is the significance of a::b;
Thanks for your inputs.