Circle movement in turbo c

Solved/Closed
qutecynosure Posts 1 Registration date Monday June 14, 2010 Status Member Last seen June 14, 2010 - Jun 14, 2010 at 11:01 AM
 arun - May 11, 2018 at 05:12 AM
I have drawn a circle within a circle. Now I want to give random movement to the inner circle. Plz tell me how will I do it in turbo c.

Regards


Related:

1 response

#include<graphics.h>
#include<stdio.h>
#include<conio.h>


int gd=DETECT,gm,col=0;
initgraph(&gd,&gm," ");
while(!kbhit())
{
setcolor(15);

delay(1000);

col++;
if(col>=600)
col=0;
cleardevice();
}
}
36
hi I dont know ur name. but I have answer for ur query. I think my answer will be satisfied u.
0
nice
0