Saturday, April 6, 2013

nosound c

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;
}

No comments:

Post a Comment