use the PC speaker.

use the PC speaker.

Beep

See version :

Pas de dépendances

Download :

#include <stdio.h>
#include <windows.h>

int main()
{
    int i;
    for(i=0;i<10000;i+=10)
    {
        Beep(i,100);
        printf("%d\r",i);
    }
    return 0;
}



Explanations

	No explanations yet.