How To Create Simple Mickey Mouse Animation in C Or C++ (Computer Graphics)

                                                                        PROJECT BY

(SIMPLIFY LEARN PROGRAMMING) 

ON

MICKEY MOUSE ANIMATION


SOURCE CODE:

#include<graphics.h>
#include<conio.h>
void main()
{
    int gd=0,gm=0;
    initgraph(&gd,&gm,"C:\\TC\\BGI");
    setcolor(7);
    circle(150,150,20);
    circle(210,150,20);
    circle(180,212,50);
    ellipse(170,212,60,180,20,40);
    ellipse(190,212,0,120,20,40);
    ellipse(140,248,60,120,20,40);
    ellipse(220,248,60,120,20,40);
    ellipse(172,200,0,360,6,15);
    ellipse(188,200,0,360,6,15);
    ellipse(182,220,10,160,12,6);
    ellipse(182,225,0,360,12,6);
    ellipse(182,225,195,345,25,30);
    ellipse(182,225,195,345,25,20);
    ellipse(172,208,0,360,2,6);
    ellipse(188,208,0,360,2,6);
    getch();
}


OUTPUT:


Comments

Popular posts from this blog

How To Draw Scenery Animation in C or C++ (Computer Graphics)

How To Draw a Butterfly Animation in C (Computer Graphics)

How To Create Flying Kite Animation in C Or C++ (Computer Graphics)