赞
踩
1.使用PlaySound函数需包含头文件
#include <windows.h>
2.包含第三方库
以CodeBlock为例,右键工程,选择构建
点击链接器设置,点击添加
添加 libwinmm.a 确定即可
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main()
{
PlaySound("D:\\music.wav",NULL,SND_SYNC);//"D:\\music.wav"为wav文件目录
return 0;
}
实现如下
C语言 PlaySound
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。