SyntaxFix
Write A Post
Hire A Developer
Questions
Oh you can Output a message when using QT += gui and CONFIG += console.
QT += gui
CONFIG += console
You need printf("foo bar") but cout << "foo bar" doesn't works
printf("foo bar")
cout << "foo bar"