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


Comments

Popular posts from this blog

Tip of the Day # 13

Governor Generals of Pakistan

Tip of the Day# 12