ringing a bell using c code example
Example: ringing a bell using 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