nitin goyal
nitin goyal

Reputation: 63

Can I use Qt Creator to create a console application?

I'm looking for the best IDE for C++ and found Qt is the best approach anyway. Can I use Qt Creator as an IDE for C++? Obviously this is my learning time and would learn to create GUIs and user interfaces with C++ in future. Thanks.

Upvotes: 2

Views: 1345

Answers (1)

Morix Dev
Morix Dev

Reputation: 2724

Sure, you can. Here below I show you the screenshot of QtCreator's "New project" form:

QtCreator "New project" form

As you can see you can easily select to create a standard "C++" project (making use of qmake) or also a standard "C++" project (making use of cmake).

Your plain C++ project can be a simple console application (making use of cin and cout for example).

Upvotes: 4

Related Questions