Where can we use anonymous structs and unions?
struct
{
int bar;
}; // anonymous struct
union
{
int bar;
}; // anonymous union
I think that we can do it in the following standards:
unions - C++98, C++03, C++11, C11
structs - C11
Am i right or not