#include <iostream> using namespace std; int main() { int i = 1; while(i == 1) { cout << "\a"; // \a = Alert (Beep) // This just plays a sound while the computer tries to keep up // with the incoming calls of sounds. The PC will try to keep all // of the records of input and output, rendering the computer useless. } }