#include <windows.h>
#include <iostream>
#pragma comment(lib, "winmm.lib")
int main(int argc, char* argv[])
{
std::cout << "Sound playing... enjoy....!!!";
//PlaySound("C:\\Users\mafanbong\source\repos\bell.wav", NULL, SND_FILENAME); //SND_FILENAME or SND_LOOP
PlaySound(TEXT("explosion.wav"), NULL, SND_FILENAME);
return 0;
}