RING TONE APPLICATION
A en joyful like musical program is used to produce melody musical songs without any instrument.
Useful interesting music program in C language.Sample program is ,
main()
{
float octave[7]={130.81,146.83,164.81,174.61,196.220,246.94};
int adn;
while(!kbhit())
{
adn=random(7);
sound(octave[adn]*10);
delay(190);
nosound();
}
return 0;
}
NOTE:
- Using dos.h,stdlib.h header files.
0 comments:
Post a Comment