4

I want to draw a rectangle using a C program. So I was trying to use the graphics.h header. But the GCC compiler gave me a error saying that the library could not be found.

genpfault
  • 51,148
  • 11
  • 85
  • 139
Praveen
  • 1,781
  • 6
  • 26
  • 32

2 Answers2

6

graphics.h is a header that define functions for libbgi (Borland Graphics Interface)

Unless you have a Borland compiler of some sort installed on your Mac (if that's even possible), I think you'll end up having to use other graphic libraries, or install a Windows/Linux Virtual Machine on your Mac and then run/compile your code inside it.

karlphillip
  • 92,053
  • 36
  • 243
  • 426
2

graphics.h is not a standard C header and is probably a part of a custom library. If you can track down that original library and provide more info, we can probably help you get it set up.

templatetypedef
  • 362,284
  • 104
  • 897
  • 1,065
  • thanks. where should i start looking for that? I've been trying to find the gcc libraries but with no success. – Praveen Feb 03 '11 at 01:16