I have a piece of code that uses stdin. When I run the program from command-line I pass it the location of a wav file i.e. /Users/username/Desktop/music.wav.
The code is written only in C. The stdin variable runs throughout 2 functions.
How would I replace the stdin within the code with the input of the file directory and location?
In other words, how do I hard code '/Users/username/Desktop/music.wav' into two different C functions.