Smiling face
Write a program to fill the entire screen with a smiling face.The smiling face has an ASCII code value 1.
#include
#include
void main(void)
{
int a=1;
while(a<2001)
{
printf("\x1");
a++;
}
getch();
}
#include
#include
void main(void)
{
int a=1;
while(a<2001)
{
printf("\x1");
a++;
}
getch();
}
Comments
Post a Comment