Can we do graphics on OS X and Linux directly with C, as we can on Windows?

In Windows we can just #include <windows.h>

in C and do some graphical stuff. Do OS X and Linux (desktop) have such APIs for C?

+3


source to share


2 answers


I would suggest that you look at SDL, which does what you ask and can work quickly on OSX, Linux, and Windows.



Available here .

0


source


There is QT



I wonder why you want to write a desktop application with c-language

0


source







All Articles