I've wanted to use music for when the program starts, but it doesn't work. Here's the problem it returns [http://i.imgur.com/mEfSry5.png] , and below the code.
1 2 3 4 5 6 7 8 9 10 11 12
#include<iostream>
#include<windows.h>
#include<Mmsystem.h>
usingnamespace std;
int main(){
LPCSTR file = "C:\\Windows\\Users\\Desktop\\Tic Tac Toe folder\\music.wav";
PlaySound(file, GetModuleHandle(NULL), (SND_FILENAME));
return 0;
}