#include <stdlib.h>
#include <iostream.h>

int main(void)
{
int i;

for (i = 0; i < 1000; i++)
{

cout<<"00101001101010110";
i++;

}
system("CLS");
return 0;
}


Well when I run this program there is still a little bit of 0101011101100.... and the screen was not totally cleared. :*(

thanks in advance