How to use GUI in C?

I am learning C and want to write GUI programs. Personally, I'm fine with a terminal on Linux or a black window on Windows. However, I want to write something that can be used by other non-professional users. So I wrote this post to ask how to write a GUI program in C (C ++ is fine). What books should I read? Or something else I need to know. Thank.

+3
source share
4 answers

For pure C, you can use GTK + , but if you are also familiar with C ++, I recommend Nokia's Qt Framework. There are over 100 YouTube videos available to learn Qt. Follow this link: Qt Training

+6

- (linux/windows/mac) C, , GTK , , GTK -Linux-.

- ++ WxWidgets , , , . Qt, , ( Qt, , GTK , GTK).

Windows linux C GUI API ( Linux, GTK, , , ). , OSX C .

+3

- API, , GUI.

Windows API Win32. Microsoft , .

OSX Cocoa ( Objective-C, C).

linux, , -, , GUI, GTK. ( -.)

+2

, C Linux, GTK+.
, curses.

, GTK +

0
source

All Articles