Guys,
In below code after reading string values from vector , I can have output like("VarID","flag","count")
for(int i=0; i < v.size(); i++){
cout<<v[i]<<endl;
}
All are (varID,flag and count)are string literal , now i need to populate the structre with this string literal.
where VarID = int,flag=bool, count=Int. Can anybody suggest regarding this how this converson will take place as i am new to STL.