Is there any way to play the BEEP sound when I write the following program?
#include<stdio.h>
void main()
{printf("\a");
}
I tried running the program using the GCC compiler in Linux but it did not give any beep whereas when the program ran in the Windows Environment, it generated the system default beep.