This program is the most useless program ever, but I watched it for 5 minutes straight because it was so mesmerizing.

Code:
#include <iostream.h>
#include <conio.h>
#include <stdlib.h>

int main()
{
	int random;
	int x;

	do
	{
	random = rand();
	cout<<random;
	for(x=0; x!=50000; x++)
	{
	}
	}while(!kbhit());

	return 0;
}