Arrays and data files in C language Write a declaration stat
Arrays and data files in C language
Write a declaration statement for a 1-D array called timedata with a length of n, where n is a pre-declared integer variable. (In other words, n has already been declared in advance.) (Remember, you cannot initialize variable-length arrays in a declaration statement) Write a declaration statement for a 2-D array called wavedata with a width of 2 and a length of 10. Write the same declaration, but for a 2-D array with a width of 2 and a length of n. Write the declaration statement for a file pointer to represent wave data, and then write a file assignment statement for that pointer that opens a file, defined as a symbolic constant FILENAME, as a read file. Write a for loop that will run a total of n times, and in each iteration will read three floating point values from the pointer declared in the last question, storing the first in the array timedata and the other two in the columns of the array wavedata. (Remember that arrays in c go from subscript (0) to (n-1). Write a for loop that will run a total of n times. Use this loop to add up the values of each column of wavedata, and then find the average of each column. Write a statement that calculates the percent error between variables containing amplitude data for two separate waves. Percent Difference = |A-B/(A + B/2)| * 100%Solution
Here is the solution for the first 4 steps:
 int timedata[n];   //Declares an array of integers named timedata.
 int wavedata[10][2]; //Declares an array of integers wavedata.
 int wavedata[n][2]; //Declares an array of integers of size nx2.
 FILE* wDFile;       //Declares a file pointer named wDFile.
 wDFile = fopen(FILENAME, \"r\");   //Assigns the file pointer in read mode.

