1. void read_lines(FILE* fp, char*** lines, int* num_lines). 2. This function should read all of the lines contained within fp and 1. Set each row of lines to contain one line of the file. 2. Set num_lines to be equal to the number of lines that were in the file 3. If ...