1

I was learning console programming with C++ since a month online. I have completed the console one and wondering how those fantastic, beautiful softwares are made.

I tried to search on Google but I couldn't figure out anything. Is there any particular library or some header files are used for it or some kind of softwares are used?

halfer
  • 19,824
  • 17
  • 99
  • 186
  • If this is about game programming, have a look at https://www.reddit.com/r/gamedev/wiki/faq#wiki_getting_started. If this is about application programming, have a look at Qt and similar frameworks. – Zeta Feb 25 '16 at 05:37
  • This question is likely to be closed for being too broad. You need a GUI library. Qt is a common choice. – JBentley Feb 25 '16 at 05:41
  • Stack Overflow is better suited to more specific problems when programming. Good luck and we'll see you soon. – Brody Feb 25 '16 at 05:43
  • You may try Qt, Gtk on Linux, or you can try to use MFC on Windows. But none of them are related to C++. You need a GUI lib. – Mine Feb 25 '16 at 05:49
  • I recommend learning about openGL. To understand what I am talking about, look at http://stackoverflow.com/questions/7968748/understanding-opengl – user Feb 25 '16 at 09:35

1 Answers1

2

C++ does not have its own Graphics Library like languages like Java, However you can use OpenGL which is pretty good for 3D modelling, etc. If you want to make something like a GUI, use Qt.