Hello, i am new to c++ and I have learned the basics you need to know about c++ so I was wondering, how do you make a GUI from scratch without using any programs like qt, daniweb, ect. Is there like a ongui() or something?
> how do you make a GUI from scratch without using any programs like qt, daniweb
Standard C++ does not (and will not) have libraries to support programming GUIs.
If the platform natively supports programming GUIs (for example Windows, Apple, Symbian etc.), you can use the API of the platform. If not, you would need third-party library support.