I have a question about list.
I have create a list in the main program that i each of the element of this list has another list. How will I loop it throug it?
For ex:
1 2 3 4 5 6 7 8
list <parents> l1;
list<parents> ::iterator it;
for(it=l1.begin(); it!=l1.end();it++){ //This is the first loop but how
//to write the second one???
parents b = *it
}