Ya vienen con el Dev-C++, por ejemplo podes hacer esto:
Código:
#include <windows.h>
int main()
{
PlaySound(TEXT("SystemStart"), NULL, SND_ALIAS);
return 0;
}
File>>New Project>>Console Application.
Copias el codigo anterior en el main.cpp.
Execute>>Compile, te dara un error al enlazar (no encuentra PlaySound).
Project>>Project Options>>Parameters>>Add library or Object: Lib\libwinmm.a
Execute>>Compile, ya funciona.