Search This Blog

C Program Ring A Bell

C Program Ring A Bell :
//C Program Ring A Bell

#include<stdio.h>
#include<conio.h>
int main()
{
/* following printf will ring a beep sound 3 times. Here \a stands for Alert and Each \a will ring a one beep sound
*/
printf("\a \a \a");
getch();
}
OUTPUT
C Program Ring A Bell

No comments:

Post a Comment