Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
~653 People Reached
Favorite Forums
1 Posted Topic
Hi friend I am a class XII, R.S.A. Here is the code you required: //developed by R.S.A. #include<graphics.h> #include<dos.h> #include<conio.h> #include<stdio.h> #include<figures.h> #include<stdlib.h> void main() { textbackground(RED); int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,""); static int i=19,j=0,r=18; for(int a=0;a<=100;a++) { if(i<500) { setcolor(random(10)); circle(i,j,r); i=i+36; } if(i>=500) { i=19; j=j+36; setcolor(random(10)); circle(i,j,r); } sleep(1); …
The End.
rsashwinkumar