Question: 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,

 Write a declaration statement for a 1-D array called timedata with

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-Darray 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%

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!