load the pipe-delimited file p. it is organized with 3 fields on each line: firstname|lastname|birthday. search for the firstname f and last name l, replacing the birthday with b. write the file back out in the same pipe-delimited format.
You will be passed the filename P, firstname F, lastname L, and a new birthday B. Load the fixed length record file in P, search for F,L in the first and change birthday to B. Hint: Each record is at a fixed length of 40. Then save the file.
“You will be passed the filename P, firstname F, lastname L, and a new birthday B. Load the fixed length record file in P, search for F,L in the first and change birthday to B. Hint: Each record is at a fixed length of 40. Then save the file.”