'\a' == 7. It's the ASCII "ACK". It beeps the terminal.

int main() {
	printf("\a");	/* beep! */
	return 0;
}