📜  c语言中的铃声 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:36.593000             🧑  作者: Mango

代码示例1
//Ringing sound using c:-

#include
int main()
{

  printf("\a \a \a");     //here \a stands for alert.So this printf will produce a beep sound
        
  return 0;         
}
//code by Dungriyal