I have tried \a \7 the windows.h beep function etc etc and nothing works.
Does newer hardware not have this functionality built in?
(Console Program)
|
In C, printf("\a") should generate an alarm. To the best of my knowledge, this is done through the PC speaker. In modern systems, there is no hardware PC speaker. It's sometimes emulated by your soundcard, but that's OS and driver specific. In short, you might be out of luck. You can try MessageBeep(): http://msdn.microsoft.com/en-us/library/ms680356(VS.85).aspx. Good luck. Also, you should check all the usual culprits like your sound card being muted, speakers plugged/not plugged in, etc. |
|||
|
Newer hardware is required to have a beep for people with disabilities, but Windows 7 moved the |
|||
|
|
|
First open a CMD prompt and type: echo ^V^G <-- this is control-V control-G If you don't hear the beep, something is misconfigured or missing. |
|||
|
|
MessageBeep(0xFFFFFFFF);instead – pmg Nov 4 '10 at 23:29