Programming Reference/Librarys
Question & Answer
Q&A is closed
Producessound of a specified frequency.
mostly used for adding music to c program
random values and delay needed to make some strange sounds.
#include<stdio.h> #include<dos.h> int main(void) { int i; for ( i = 42 ; i <= 4200 ; i ++ ) { i = i + rand(100); sound(i); delay(50); } nosound(); return 0; }
Strange sounds