I am trying to make my c program more dynamic. It should opens a file with fopen(). Apparently, fopen does not read absolute paths. For example It can't read this path:
fopen("/Documents/projects/cs50_radio/broadcast/source/deadinside.mp3", "r")
returns NULL
;however,
fopen("deadinside.mp3", "r");
returns the expected pointer
I was wondering if there is a possible way to read such a path which might be independent from the current working directory in other cases ?