Thread: C++ problem
View Single Post
 
Reply
Posted 2002-11-26, 10:15 AM in reply to VComegasin's post "C++ problem"
There are so many ways to call the beep.

Escape characters, like \a and \007 cause your program to beep.

If you have "#include <beep.h> /* got beep? */" you can define it as beep(x, y) (frequency and length)

Or..you can code it with echo.

Code:
#include <iostream.h>

void main()
{
   cout << "beep beep!\a\n";
}

// eof
Old
Profile PM WWW Search
Dalton is neither ape nor machine; has so far settled for the in-betweenDalton is neither ape nor machine; has so far settled for the in-between
 
 
Dalton