User Tools

Site Tools


c:dos.h:sound

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:dos.h:sound [2024/02/16 01:06] (current)
Line 1: Line 1:
 +
 +====== sound ======
 +<code c>
 +void sound( unsigned int );
 +</code>
 +
 +===== description of sound =====
 +Producessound of a specified frequency.\\
 +mostly used for adding music to c program\\
 +random values and delay needed to make some strange sounds.\\
 +
 +<code c>
 +#include<stdio.h>
 +#include<dos.h>
 +
 +int main(void)
 +{
 +   int i;
 +   for ( i = 42 ; i <= 4200 ; i ++  )
 +   {
 +      i = i + rand(100);
 +      sound(i);
 +      delay(50);
 +   }
 +   nosound();
 +
 +   return 0;
 +}
 +</code>
 +
 +==== output of sound c example ====
 +    Strange sounds 
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/dos.h/sound.txt · Last modified: 2024/02/16 01:06 (external edit)

Impressum Datenschutz