Sunday 28 February 2016

Fill the screen with Smiley Face Icon

Q. Write a C program to fill the display screen with smiley.

Hint: ASCII value of Smiley Icon is 1.

Ans

/*c program to fill all the screen to smiley icon*/
#include<stdio.h>
#include<conio.h>
int main()
{
 int x,y;
 for(x=1, y=1; y<=1000; y++)
   printf("%2c",x);
 getch();
 return 0;

}

No comments:

Post a Comment

Ads Inside Post