void print_it(char printwhat[size])
{
FILE *the_printer = fopen("LTP1", "w");
fprintf( the_printer, "%s", printwhat );
fclose( the_printer );
}

Now if I can just figure out how to colour the...