I\'m looking for the easiest way to play a MP3 file in C. I am looking for either a library, in which I could just call the function on the filename, or an executable that w
Basically you can use the windows.h header file
#include void main() { //replace music with your filename system("start music.mp3"); }