Answers for "ringing a bell using c"

C
0

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
Posted by: Guest on October-10-2020

Code answers related to "C"

Browse Popular Code Answers by Language