//Ringing sound using c:- #include<stdio.h> int main() { printf("\a \a \a"); //here \a stands for alert.So this printf will produce a beep sound return 0; } //code by Dungriyal