sound in DEV C++

Is it very hard to code a wav sound file in DEV C++?

Thanks,
Chester
PCM WAV file is uncompressed and therefore relatively easy to write/read, although still hard for a beginner. I do suggest using a library, as coder777 said, unless you want to understand file formats like WAV as a learning experience.

Disch's tutorial to good binary files:
http://www.cplusplus.com/articles/DzywvCM9/

WAV format webpages:
http://www.topherlee.com/software/pcm-tut-wavformat.html
http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html

If you're interesting in sound processing, check out the fftw library for Fourier Transforms (not directly related to wav files)
http://www.fftw.org/
code a wav sound file

What do you want to do? Create one, play one, modify or analyze one ?
I just want to create a beep sound (or) wave sound after an event.
Topic archived. No new replies allowed.