In C++ language, the following functions
sound()
nosound()
are defined in which header file?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
/*Example (for both functions): Emits a 70-Hz tone for 10 seconds. */
include < dos.h >
void main() { sound(70); delay(10000); nosound();
}