+ 5
Does cpp support gui programming?
6 Antworten
+ 10
C++ doesn't have support built into the compiler or standard libraries. However, there are plenty of gui libraries available to use.
https://www.sololearn.com/Discuss/1052343
https://www.sololearn.com/Discuss/892564
+ 30
yes it does in fact there is a lot of GUI programming in Cpp like Boot loaders for example "bochs" app is a boot loader that is written in Cpp and you can also use it for game development
+ 6
@Jayden LeCorps
GUI = Graphical User Interface
+ 4
There isn’t a centralized place to download C++ libraries, you have to go to separate websites.
You might want to find a tutorial for linking libraries because it is a bit of an annoying process.
There are 2 ways to link libraries: dynamic and static.
If you see a file extension, “.dll” on any file, use dynamic linking for that library.
+ 3
@JacobPembleton thanks man..
+ 2
thanks.. in Python, if you want to download a module, you use the pip install on the cmd.. how is it done in cpp