+ 1
Which key is used for getting beep sound?
2 Respuestas
+ 6
In C and C++, the scape sequence \a triggers the system alarm (In Windows and Linux machine for sure).
printf ("\a");
std::cout << '\a';
but in SL compiler they show you ● character.
+ 1
thnqu