Wikipedia

खोज नतीजे

बुधवार, 31 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

   $GRAPHIC DRAW POLY MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

int poly[10];

initgraph(&gd,&gm,"C:\\TC\\bgi");

poly[0]=50;

poly[1]=50;

poly[2]=50;

poly[3]=100;

poly[4]=100;

poly[5]=150;

poly[6]=150;

poly[7]=150;

poly[8]=poly[0];

poly[9]=poly[1];

getch():

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

शनिवार, 27 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC FLOODFILL MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setfillstyle(1,RED);

circle(300,250,50);

floodfill(305,255,WHITE);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

  $GRAPHIC TEXTWIDTH MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

int result;

initgraph(&gd,&gm,"C:\\TC\\bgi");

result=textwidth("Rahul");

printf(returned value is=%d,"result");

getch():

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC TEXTHEIGHT MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

int result;

initgraph(&gd,&gm,"C:\\TC\\bgi");

result=textheight("Rahul");

printf(returned value is=%d,"result");

getch():

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

$GRAPHIC SETTEXTSTYLE MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

settextstyle(GOTHIC_FONT,0,4);

getch():

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC SETLINESTYLE MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setlinestyle(DOTTED_LINE,1,3);

line(100,200,300,200);

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

$GRAPHIC SETFILLSTYLE MAKING CODING

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setfillstyle(1,CYAN);

rectangle(200,200,380,300);

floodfill(205,205,WHITE);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC SETCOLOR MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setcolor(2);

outtextxy(300,250,"Rahul Kumar");

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

शुक्रवार, 26 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

$GRAPHIC SETBKCOLOR MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setbkcolor(2);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

        $GRAPHIC SECTOR MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

sector(300,250,20,200,150,160);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

       $GRAPHIC PIESLICE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

pieslice(300,250,30,170,100);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

      $GRAPHIC OUTTEXTXY MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

outtextxy(300,250,"Rahul Kumar");

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

     $GRAPHIC OUTTEXT MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

outtext("Rahul Kumar");

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

    $GRAPHIC LINETO MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

lineto(300,250);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

   $GRAPHIC BAR3D MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

bar3d(200,200,300,300,15,1);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

  $GRAPHIC BAR MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

bar(200,300,40,350);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC FILLELLIPSE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

fillellipse(300,250,100,50);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

      $GRAPHIC DELAY MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

#include<dos.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

circle(200,250,30);

delay(2000);

line(250,250,340,280);

delay(4000);

arc(400,220,190,260,50);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

     $GRAPHIC ELLIPSE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

ellipse(300,250,0,360,100,40);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

    $GRAPHIC LINE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

line(300,200,450,300);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

   $GRAPHIC ARC MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

arc(300,250,0,50,100);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

  $GRAPHIC RECTANGLE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

rectangle(200,200,400,300);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC CIRCLE MAKING CODING$

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

circle(300,250,50);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

मंगलवार, 23 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

$GRAPHIC EXPENDROUND MAKING CODING$

#include<conio.h>

#include<graphics.h>

#include<dos.h>

void main(void)

{

int i;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

for(i=0;i<200;i++)

{

cleardevice();

arc(getmaxx()/2,getmaxy()/2,0,180,i);

arc(getmaxx()/2,getmaxy()/2,180,0,i);

delay(30);

}

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics




ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC SPRIAL MAKING CODING$.

#include<stdlib.h>

#include<conio.h>

#include<graphics.h>

#include<dos.h>

void main(void)

{

int j=0,x,y;

floati=0.1;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

x=getmaxx()%2;

y=getmaxy()%2;

while(!kbhit())

{

setcolor(rand()%16);

arc(x,y,1+j,2+j,i+=0.1);

delay(10);

j++;

}

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics


ONLY USE FOR COMPUTER GRAPHICS*\\

$GRAPHIC BLINK ROUNDMAKING CODING$.

#include<conio.h>

#include<stdlib.h>

#include<graphics.h>

#include<dos.h>

void main(void)

{

int gd=DETECT,gm;

int i,j,k;

initgraph(&gd,&gm,"C:\\TC\\bgi");

for(k=1;k<=10;k++)

{

for(i=0;i<360;i++)

{

setcolor(rand()%10);

for(j=0;j<15;j++)

arc(300,200,0,i,2+j);

delay(1);

}

}

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics


सोमवार, 22 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC LOADINGBAR MAKING CODING$.

#include<graphics.h>

#include<conio.h>

#include<dos.h>

void main(void)

{

int i;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setbkcolor(BLUE);

for(i=1;i<=30;i++)

{

setfillstyle(1,RED);

circle(300,200,5);

floodfill(300,200,WHITE);

delay(100);

setfillstyle(1,RED);

circle(320,200,5);

floodfill(320,200,WHITE);

delay(100);

setfillstyle(1,RED);

circle(340,200,5);

floodfill(340,200,WHITE);

delay(100);

cleardevice();

delay(100);

}

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC BLACKBOARD MAKING CODING$.

#include<stdio.h>

#include<conio.h>

#include<stdlib.h>

#include<dos.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setcolor(rand()%10);

rectangle(rand()%600,rand()%500,rand()%20);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 $GRAPHIC RECTANGLE MAKING CODING$.

#include<conio.h>

#include<stdlib.h>

#include<graphics.h>

void main(void)

{

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

setcolor(rand()%10);

rectangle(rand()%600,rand()%500,rand()%600,rand()%500);

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

रविवार, 21 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

\\$*#@GRAPHIC BOTTLE MAKING CODING.

#include<graphic.h>
#include<conio.h>
void main(void)
{
int poly[18];
int gd=DETECT,gm;
initgraph(&gd,&gm,"C:\\TC\\bgi");
setbkcolor(BLUE);
poly[0]=300;
poly[1]=30;
poly[2]=300;
poly[3]=70;
poly[4]=260;
poly[5]=90;
poly[6]=260;
poly[7]=400;
poly[8]=400;
poly[9]=400;
poly[10]=400;
poly[11]=90;
poly[12]=360;
poly[13]=70;
poly[14]=360;
poly[15]=30;
poly[16]=poly[0];
poly[17]=poly[1];
setfillstyle(1,GREEN);
fillpoly(9,poly);
drawpoly(9,poly);
arc(330,5,230,310,110);
arc(330,33,230,310,50);
getch();
}
enter the ctrl+f9 to start your program.

note= only for use c language or graphics



ONLY USE FOR COMPUTER GRAPHICS*\\

 \\$*#@GRAPHIC MOVING MAKING CODING.

#inlude<graphics.h>

#include<conio.h>

#include<stdlib.h>

#include<dos.h>

void main(void)

{

int i,j,k;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

i=rand()%600;

j=rand()%500;

k=rand()%50;

for(i=1;i<=500,i++)

{

circle(i,j,k);

setfillstyle(1,RED);

floodfill(i+1,j+1,WHITE);

delay(50);

cleardevice();

}

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

शनिवार, 20 मई 2023

ONLY USE FOR COMPUTER GRAPHICS*\\

 \\$*#@GRAPHIC RAMBOW MAKING CODING.

#include<graphics.h>

#include<stdlib.h>

#include<dos.h>

#include<conio.h>

void main(void)

{

int k;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

for(k=0;k<200;k++)

{
setcolor(random(20));

arc(getmaxx()/2,getmaxy()/2,0,180,k+10);

delay(10);

}

getch();

}

enter the ctrl+f9 to start your program.

note= only for use c language or graphics

ONLY USE FOR COMPUTER GRAPHICS*\\

 \\$*#@GRAPHIC CD MAKING CODING \\

#include<graphics.h>

#include<stdlib.h>

#include<dos.h>

#include<conio.h>

void main(void)

{

int k;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

for(k=0;k<100;k++)

{
setcolor(random(20));

arc(getmaxx()/2,getmaxy()/2,0.180,k+10);  arc(getmaxx()/2,getmaxy()/2,180,360,k+10);

delay(20);

}

getch();

}

enter the ctrl+f9 to start your graphics.

note= use for only c language or computer graphics.



ONLY USE FOR COMPUTER GRAPHICS*\\

\\$*#@GRAPHIC CAVE MAKING CODING \\

# include<graphics.h>

#include<conio.h>

#include<dos.h>

void main(void)

{

int k;

int gd=DETECT,gm;

initgraph(&gd,&gm,"C:\\TC\\bgi");

for(k=30;k<300;k++)

{

delay(50);

setcoloe(k/10);

arc(k-10,k-10,0,180,k-10);

}

getch();

}

enter the ctrl+f9 to start your graphics

note=use for only c language or graphics of computer

ककनमठ मंदिर का इतिहास

  🕉️ *एक ऐसा मंदिर जिसे इंसानों ने नहीं बल्कि भूतों ने बनाया था? भगवान शिव का प्राचीन मंदिर । मुस्लिम शासकों ने इसे तोड़ने के लिए गोले तक द...