Q&A is closed
void nosound( void );
turn off the PC speaker.
#include<stdio.h> #include<dos.h> int main(void) { sound(400); delay(1000); nosound(); return 0; }
silence :D