W poprzednim poście kazałem wam napisać program wyświetlający na ekranie tekst: \?"Witam tu twoj komputer!!!"?\ oraz miał być odtwarzany sygnał dźwiękowy.
Oto rozwiązanie:
#include <cstdlib>
#include <iostream>
using namespace std;
int main(void)
{
cout << "\\\?" << "\"Witam tu twoj komputer!!!" << "\"\?\\" << "\a" << endl << endl;
system("PAUSE");
return 0;
}