line function is used to draw a line from a point(x1,y1) to point(x2,y2) i.e. (x1,y1) and (x2,y2) are end points of the line.
लाइन फंक्शन की सहायता से दो बिन्दुओ (x1,y1) एवं (x2,y2) के मध्य एक रेखा खिंची जा सकती है, दोनों (x1,y1) एवं (x2,y2) बिंदु रेखाखंड के अंतिम बिंदु होते है।
Syntax:-
void line(int x1, int y1, int x2, int y2);
Program:-
#include <graphics.h>
#include <conio.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
line(100, 100, 200, 200);
getch();
closegraph();
return 0;
}
No comments:
Post a Comment