Sunday, 10 February 2013

Fill you screen with smiley icon


/*ASCII value of Smiley Icon is 1.*/

#include<stdio.h>
#include<conio.h>
void main()
{
 int y;
 clrscr();
 for(y=1; y<=1000; y++)
   printf("%2c",1);
 getch();
}

No comments:

Post a Comment