Created
October 6, 2017 06:30
-
-
Save haruncpi/b350fa7fecb1f53b3f57bb8e6ba2291c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<graphics.h> | |
| void main() | |
| { | |
| int gd,gm; | |
| gd=DETECT; | |
| initgraph(&gd, &gm,"C:\\TC\\bgi"); | |
| line(100,100,200,100); | |
| getch(); | |
| closegraph(); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment