#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();
}