membunyikan bel menggunakan c

#include<stdio.h>
int main()
{

  printf("\a \a \a");          //this printf will ring a beep sound 3 times
           
  //Here \a stands for Alert
  
  return 0;         
}
//code by Dungriyal
Defeated Devil