/*garbage.c*/

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(void)
{
	int ch=0, cs=0; /*ch == character, cs == case*/
	srand(time(0));
	while(1)
	{
		ch=0;	
		while(!isprint(ch))
			ch = rand() % 256;
		cs = rand() % 2;		
		if(cs)
			ch = toupper(ch);
		else
			ch = tolower(ch);
		printf("%c",ch);
		fflush(stdout);
	}
	return EXIT_SUCCESS;
}
