Does anybody know how to print to the command line from within QT?
Printable View
Does anybody know how to print to the command line from within QT?
try to use qDebug(.....) function.
It works as cout for QString and printf() for other data-types.
Thanks for help, I got it working.