📜  敲钟使用 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:41.305000             🧑  作者: Mango

代码示例1
#include
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