#include <QDebug>
consol message
int byval= 100;
qDebug() <<"hello";
qDebug("QtFirst Project. My value. %d", byval);
Result ->
hello
QtFirst Project. My value. 100
#include <QDebug>
consol message
int byval= 100;
qDebug() <<"hello";
qDebug("QtFirst Project. My value. %d", byval);
Result ->
hello
QtFirst Project. My value. 100