If you've got structure A inside class B and want to initialize the structure A while constructing object of class B just
call desired constructor of structure A within constructor's initialisation list.
Example:
struct A
{
// a set of members
int m_x, m_y, m_z;
// a set of constructors
A() : m_x(1), m_y(2), m_y(3) {}
A(int x, int y, int z) : m_x(x), m_y(y), m_z(z) {}
};
class B
{
A m_a;
// here we call constructor of class A in initialisation list
B() : A(4, 5, 6) {}
};
This should answer your question.