fork download
  1. #include <graphics.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <conio.h>
  5. #include <math.h>
  6. void main()
  7. {
  8. int gd=DETECT,gm;
  9. initgraph(&gd,&gm,"");
  10. line(100,200,100,200);
  11. getch();
  12. closegraph();
  13. }
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:26: fatal error: graphics.h: No such file or directory
     #include <graphics.h>
                          ^
compilation terminated.
stdout
Standard output is empty