I am confused about this: I use Visual Studio 2013
when I am creating project for windows:
When I use qDebug() the output goes to some console output. Is this the console I can use for input? Or I need the one from Qt+=console This code doesnt work there ,so i guess if I want to use that I need console application.
Code 1
QTextStream out(stdout);
out << "Please enter login username and password\n";
out.flush();
however
when I am creating project for linux:
I dont need that console application and it works fine, for example code1 works as desired... I am confused why? Why on linux that works but not in windows?