Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

coloredSlowPrint.cpp (See related posts)

#include <iostream>
#include <ctime>
#include <cstring>
#include <cstdlib>
#include <windows.h>

using namespace std;

int main()
{
int i;
char tmp[124];
char ar[] = "WARNING: Array Is Getting Filled!";
strcpy(tmp,ar);
system("color 1f");
for(i=0;i<strlen(ar);i++)
{
cout << ar[i];
Sleep(25);
}
getchar();
MessageBox(NULL, tmp, "Good Job!", MB_OK);
getchar();
}

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts