Reputation: 39264
My understanding is that wxWidgets is for a number of programming languages (C++, Python, Perl, and C#/.NET) but that does not include C. Is there a similar framework for the C programming language, or is this not something that C is used for?
Upvotes: 5
Views: 10589
Reputation:
Obviously No, Because it has predefined classes but if you insist you can try GTK which is for C.
Upvotes: 0
Reputation: 2158
If you don't mind working with older libraries there are quite a few. For example, there's a no-frills GUI kit for Ansi-C called IUP. Also, check out this list -- Search on that page for 'C API'. I think the most modern and well-known is the above-mentioned GTK+.
Upvotes: 7