C++ は初めてです。LCD の printf 関数を使用してビープ プログラムを実行および実行するためのコードが必要です。
C++ を使用して、システムでビープ音を表示するプログラムを作成する方法
You can try like this:0
cout << '\a';
or try this:-
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
Beep(200,1000);
cin.get();
return 0;
}
Also check out the Beep function
std::cout << '\a';
OR
printf("\a");