(C++) console application
February 24, 2017 · View on GitHub
(C++) console application
A console application is an application that only uses text to display information and requests text commands as input. Examples of console applications are command-line tools or text advantures.
An advantage of developing console applications is that these are mostly platform independent and thus easy to port.
Note for Qt Creator users
In the project file, add the following lines to create console applications:
CONFIG += console CONFIG -= app_bundle