카테고리 없음
qt qDebug
chacharang
2021. 1. 10. 21:55
#include <QDebug>
consol message
int byval= 100;
qDebug() <<"hello";
qDebug("QtFirst Project. My value. %d", byval);
Result ->
hello
QtFirst Project. My value. 100