ok I am continuing to have issues with printing out each record one at a time. When ever i modify my code i can never get it go print out one at a time instead it prints out all of them.

The data i am using for input looks like this:

Johnson Mike J 253657410 19473.00
Mack Johnny T 230459630 21045.00
Jackson Lewis J 169741052 2579.69
Zunny Jack L 065523069 25144.36
Ashberry Jim P 741803205 26390.54

i want it to first print out the first persons info like this:

Code:
NUM     ADDRESS    LAST         FIRST   MI    SSN        BALANCE    NEXT
-------------------------------------------------------------------------------

1      431DB0   Ashberry        Jim       P   741803205   26390.54    NULL
Then print out:

Code:
NUM     ADDRESS    LAST         FIRST   MI    SSN        BALANCE    NEXT
-------------------------------------------------------------------------------

1      431DB0   Ashberry        Jim       P   741803205   26390.54    431E90

2      431E90   Jackson         Lewis     J   169741052   2579.69    NULL
Then print:

Code:
NUM     ADDRESS    LAST         FIRST   MI    SSN        BALANCE    NEXT
-------------------------------------------------------------------------------

1      431DB0   Ashberry        Jim       P   741803205   26390.54    431E90

2      431E90   Jackson         Lewis     J   169741052   2579.69    431F00

3      431F00   Mack            Johnny    T   230459630   21045.00    NULL

And so on.....

what am i doing wrong?