Subject: sp4 (This message is being sent to CPSC 215 Students and TA's) >> Dr. Westall, >> >> It was not specified in the sp4.f05.pdf file whether or not you would >> take off points if we used arrays instead of pointers to access the >> buffer. Will you take off points if we use arrays this time? You should use pointer notation to access dynamically allocated data structures. You may use array notation to access specific elements declared as arrays within structures definitions provided by me. . When in doubt, try to use pointer notation. Here is an example of acceptable usage of array notation: fscanf(in, "%lf %lf", &proj->win_size_world[0], &proj->win_size_world[1]);