我看到每个人都建议只使用 openGL 和其他一些,但我不想。我只是想知道graphic.h是否只能在turbo c中编译而不是在gcc中编译,谢谢
10790 次
2 回答
1
You might get graphics.h compiled (as #included part of some sources), but the linking (coming after the compilation) will fail, as gcc's linker (ld) would not link the compilation's result against the library (graphics.lib) implementing what graphics.h prototyped.
于 2013-10-23T10:31:38.300 回答