How can i make a pattern showing INDIA flag. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How can i make a pattern showing INDIA flag.

Related to c programing

16th Mar 2018, 12:50 PM
Saurabh kumar
Saurabh kumar - avatar
1 Answer
- 1
/*C Program to Draw Indian National Flag in Computer Graphics*/ #include<stdio.h>#include<graphics.h>#include<math.h>int main(){ int gd,gm; int r,i,a,b,x,y; float PI=3.14; detectgraph(&gd,&gm); initgraph(&gd,&gm,"C:\\TURBOC3\\BGI"); //draw the top rectangle and color it setcolor(RED); rectangle(100,100,450,150); setfillstyle(SOLID_FILL,RED); floodfill(101,101,RED); //draw the middle rectangle and color it setcolor(WHITE); rectangle(100,150,450,200); setfillstyle(SOLID_FILL,WHITE); floodfill(101,151,WHITE); //draw the bottom rectangle and color it setcolor(GREEN); rectangle(100,200,450,250); setfillstyle(SOLID_FILL,GREEN); floodfill(101,201,GREEN); //draw the circle a=275; //center b=175; //center r=25; //radius setcolor(BLUE); circle(a,b,r); //spokes for(i=0;i<=360;i=i+15) { x=r*cos(i*PI/180); y=r*sin(i*PI/180); line(a,b,a+x,b-y); } getch(); closegraph(); return 0;}
9th Apr 2018, 11:53 AM
Sahil Saluja
Sahil Saluja - avatar