1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<dos.h> #include<graphics.h> void main() { int gd=DETECT,gm; int i=0,m=0; initgraph(&gd,&gm,"..\\bgi"); while(!kbhit()) { cleardevice(); i++; if(i>getmaxx()) i-=670; line(80+i,300,90+i,270); line(90+i,270,120+i,270); line(120+i,270,160+i,240); line(160+i,240,230+i,240); line(230+i,240,275+i,270); line(275+i,270,310+i,270); line(310+i,270,335+i,290); line(335+i,290,335+i,300); line(255+i,300,335+i,300); line(180+i,300,210+i,300); line(80+i,300,135+i,300); arc(232+i,300,0,180,23); arc(157+i,300,0,180,23); circle(232+i,300,18); circle(157+i,300,18); pieslice(232+i,300,0+m,90+m,18); pieslice(232+i,300,180+m,270+m,18); pieslice(157+i,300,0+m,90+m,18); pieslice(157+i,300,180+m,270+m,18); if(m<-360) m=90; m-=3; delay(5); } getch(); closegraph(); } |
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya
August 4th, 2010 at 5:08 pm
which header files you use in this program.
March 22nd, 2011 at 10:46 am
there is error in your program.
not initialize graphics.
May 29th, 2011 at 10:53 pm
I cant run in my Compiler (turbo c++ 3.0). Why?
August 21st, 2011 at 2:55 pm
There is one error in program.I can solve this error.
you have write
initgraph(&gd,&gm,”c:\\tc\\bgi”);
and run the program….
January 24th, 2012 at 10:31 pm
initgraph(&gd,&gm,”c:\\tc\\bgi”); except this mistake it was awesome man
February 5th, 2012 at 1:17 pm
what a gr8 programming
Hats off!!!!