Answers for "ringing sound in c"

0

ringing sound in c

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

Browse Popular Code Answers by Language