Indian Flag INDEPENDENCE DAY SPECIAL CODING


 #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();

             cleardevice();

             settextstyle(SANS_SERIF_FONT,HORIZ_DIR,2);

              outtextxy(100,200,"HAPPY INDEPENDENCE DAY ");

              delay(5000);


getch();

            cleardevice();

             settextstyle(SANS_SERIF_FONT,HORIZ_DIR,2);

              outtextxy(100,200,"PROJECT BY PROGRAMMING WITH ME");

              delay(5000);

closegraph();

return 0;

}

Comments

Popular posts from this blog

Write a program to calculate the bill amount for an item given its quantity sold, value, discount ,and tax.

Bank Atm project using C Programming