Face With Stuck-Out Tongue And Winking Eye
//Face With Stuck-Out Tongue And Winking Eye
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void main()
{
int gd=DETECT,gm,x,y,i,j,k=90,l=90;
initgraph(&gd,&gm,"C:/TC/BGI");
x=getmaxx()/2;
y=getmaxy()/2;
setcolor(14);
circle(150,150,150);
setfillstyle(1,14);
floodfill(150,150,14);
setbkcolor(0);
setcolor(0);
circle(220,100,25);
setfillstyle(1,0);
floodfill(220,100,0);
setcolor(0);
ellipse(100,100,0,360,20,3);
setfillstyle(1,0);
floodfill(100,100,0);
setcolor(0);
arc(150,130,220,320,100);
arc(60,180,260,10,20);
arc(240,180,170,290,20);
setcolor(12);
arc(207,227,180,60,35);
arc(150,130,283,318,100);
setfillstyle(1,12);
floodfill(210,230,12);
setcolor(4);
arc(125,280,12,40,100);
setcolor(14);
getch();
closegraph();
}
OUTPUT


Comments
Post a Comment