+ 2
GUI app with C
How can i make a GUI app with C programming?
3 Answers
+ 9
Here is a decent explanation,
https://stackoverflow.com/questions/5450047/how-can-i-do-gui-programming-in-c
+ 4
You need graphical library.
Here are some fine examples to start with :
SDL2, SANDAL2
If you are confident in C, you can try to learn OpenGL
You can learn SDL2 on the web but I will not advise you to use either tutorial as I learnt it in a French Website.
You can learn SANDAL2 here : https://github.com/Klevh/SANDAL2
You can learn OpenGL here : https://learnopengl.com/
It is used with C++ but as OpenGL and GLFW are C libraries, you can adapt the C++ code and learn OpenGL the same way.
+ 2
Thanks @dev