Page 1 of 1

System Sound?

Posted: Sat Jul 05, 2008 12:43 pm
by 3cmSailorfuku
Is there a function to play a system sound? Like the common *Beep*.

Re: System Sound?

Posted: Sat Jul 05, 2008 1:11 pm
by Administrator

Code: Select all

printf("\a"); // \a means to send a system beep to the standard output.

Re: System Sound?

Posted: Sat Jul 05, 2008 3:43 pm
by 3cmSailorfuku
elverion wrote:

Code: Select all

printf("\a"); // \a means to send a system beep to the standard output.
Didn't knew, thank you :3