int main(int argv, char *argv[])
{
char *msg = new char[1024];
int i;
for (i = 0; i < 1024; i++) msg[i] = '\0';
FILE *in = fopen("message.txt", "rt");
i = 0;
if (!in) return -1;
while (!feof(in))
{
msg[i++] = fgetc(in);
}
fprintf(stdout, "%s", msg);
int key = 1;
while (key)
{
Sleep(100);
system("CLS");
Sleep(100);
fprintf(stdout, "%s", msg);
if (getch() == '\n') key = 0;
}
return 1;
}
The result:
GET WELL DAN!!!!!!!
(and it would flash too, but I can't make it do that here

)