How to program GUI in C? [closed]

2

What APIs do I get to create GUI using C?

I searched and found a GTK + call, but I want to know the name of other libraries to create GUI using C in the same GTK + style as Windows.

If possible, post their respective sites.

    
asked by anonymous 12.08.2015 / 15:04

1 answer

3

In addition to the GTK + you already know there are a multitude of libraries that can be used. I will cite the most known for C (not C ++ as per request):

  • Win32 API (standard Windows library, not just the GUI part - tutorial )
  • cross platform , mostly used with Lua but can be used with C and other languages)
  • Tk - (used with Tcl but can be used with C and consequently with other languages)
  • Xforms
  • XVT
  • EFL

You can not put examples in such a wide-ranging question, but they exist in their sites . Examples of everything is a lot, put some just to say it has not going to make the answer be better.

    
12.08.2015 / 15:36