📅  最后修改于: 2022-03-11 14:55:36.593000             🧑  作者: Mango
//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