HOT C PROGRAMS BLOGSPOT

HOT C PROGRAMS BLOGSPOT

Click On Related Results For More Information

Thursday 4 October 2012

Magic Flow

/*Magic Flow*/

#include<stdio.h>
#include<conio.h>
void main()
{
    int i,j,k;
    clrscr();
    for(i=1;i<=6000;i++)
    {
       for(j=1;j<=6000;j++)
       {
           for(k=1;k<=6000;k++)
             {
                textbackground(i);
                textcolor(i++ + ++i);

                cprintf("    *");
            }
       }
     printf("\n");
    }
   getch();
}

No comments:

Post a Comment