Beep a sound : Beep « Development « C / ANSI-C






Beep a sound

  
#include <stdio.h>

int main(void)
{
  printf("\a");

  return 0;
}


           
       








Related examples in the same category

1.Countdown program: beep