Hi all,
How to use structures as a class member in C++

e.g
class A
{
public:
struct b
{
int x
};
void display()
{ cout<<"Hi"}
};