Sunday, 25 December 2011

sound

#include<dos.h>
 
main()
{
int a;
 
for ( a = 200 ; a <= 1000 ; a = a + 20 )
{
sound(a);
delay(25);
}
nosound();
 
return 0;
}

No comments:

Post a Comment