I would be very happy if you could explain to me clearly to understand the insertAtRear function.
I want to make an insertation like
void insertAtRear(int i, string s, string n)
{
//???
}
and than also need to disply the inserted data by using
printList() with and increasing number on the left.
Like:
1: 333, AAA, BBB
2: 389, ABA, BCB
....
Thanks in advance
juniper