/** * Another program to read all the lines of a file into an array. * But in this case, allocate teh array differently than reader0.c * @author gtowell * Created: March 2021 * **/ #include #include #include #define MAX_LINES 16 int main(int argc, char* argv[]) { // Allocate an array that stores only pointers to strings // This is very different from a 2d array of strings char* a[MAX_LINES]; // show the pointers and the location that those pointers are stored at for (int i = 0; i