nosound c By:Deepak mehta

nosound function turn off the PC speaker.

Declaration : void nosound();

C programming code for nosound
#include<dos.h>

main()
{
   sound(400);
   delay(1000);
   nosound();

   return 0;
}

Comments

Popular posts from this blog

Operators And Separators In C Language Operators in C Language:

Difference between asterisk and ampersand operators in c