Image description: a chained list

This image depicts three salary records linked together in storage.

Each salary record contains three fields:

  • PTR-NEXT-RECORD, which is a data pointer
  • NAME
  • SALARY

In the first record, PTR-NEXT-RECORD has the address of the second record. In the second record, PTR-NEXT-RECORD has the address of the third record. In the third and last record, PTR-NEXT-RECORD has the NULL pointer value to indicate the end of the list.

End of image description.