Write the declaration statement for a file pointer to repres
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.
Solution
Answer:
FILE *wavedata; //a file pointer to represent wave data
wavedata = fopen(FILENAME, \"r\");//a file assignment statement for that pointer that opens a file
