How to make the hardware beep sound with c++?
Thanks
alternatively in c or c++ after including stdio.h
char d=(char)(7); printf("%c\n",d);
(char)7 is called the bell character.