본문 바로가기

카테고리 없음

qt qDebug

#include <QDebug>

 

 

consol message 

 

int byval= 100;

qDebug() <<"hello";

qDebug("QtFirst Project. My value. %d", byval);

 

Result  ->

 

hello

QtFirst Project. My value. 100