'graphics for MingW
I am using Windows 7 and MingW for compiling c programs that I write.. I wish to learn how to draw lines, arc, circles (graphics) in C - programming. the book I am referring to uses graphics.h and graphics.lib of turboC. But I have mingW. how do I get the header and library files for MingW?
Solution 1:[1]
Mingw itself doesn't have a graphics library, but Windows does.
What you can look into is the Windows API, which can also be used in Visual Studio. The API provides such functions. Here is one of many tutorials, where among others the Ellipse function is used.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | wormsparty |
