nosound


dos functions in c


/*
Write a program in C for nosound dos function
*/

#include<dos.h>

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

   return 0;
}

Post a Comment

0 Comments