Hi,

I have two structs like below,

struct SP
{
string sp1;
string sp2;
};


struct SL
{
string sl1;
string sl2;
string sl3[3];
vector<SP> sl4;
};

vector<SL> slVect;


Please suggest, How to add data to slVect ?

Thanks in advance.